diff options
author | jstebbins <[email protected]> | 2011-03-01 00:37:34 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-03-01 00:37:34 +0000 |
commit | 6c4a61fcad2fd043b3aa3737b5047c65cb02a42e (patch) | |
tree | 64fd1285535a613e0757df0e565aa98c65b58d05 /libhb | |
parent | dc6420553bfeacdcd4ae826a42a3090b55f5c4e8 (diff) |
silence compiler warning about const char *
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3822 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 4c118411b..4b4653760 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -1562,7 +1562,7 @@ static void set_audio_description( hb_audio_t *audio, iso639_lang_t *lang ) codec_name = "DTS"; } - char *profile_name; + const char *profile_name; profile_name = av_get_profile_name( codec, cc->profile ); if ( profile_name ) { |