summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-01-04 15:02:07 +0000
committerRodeo <[email protected]>2013-01-04 15:02:07 +0000
commitbc5053fcb1eb98c81f8a0e1f3062379d90968ff5 (patch)
tree20df64ca714271934db2b91b29768b3aaa88340a /test
parent81321500fa1dfce2c59a424a390e6a0226bfbdbc (diff)
hb_rate_s, hb_mixdown_s, hb_encoder_s: use const char * instead of char *
These are used in hardcoded tables, so there will never be a need for mutable strings. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5148 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r--test/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c
index 5ceb4045b..39d5ca467 100644
--- a/test/test.c
+++ b/test/test.c
@@ -3803,7 +3803,7 @@ static int ParseOptions( int argc, char ** argv )
{
for( j = 0; j < hb_audio_encoders_count; j++ )
{
- char * encoder = hb_audio_encoders[j].short_name;
+ const char *encoder = hb_audio_encoders[j].short_name;
// skip "copy:"
if( strlen( encoder ) > 5 )
encoder += 5;