diff options
author | jstebbins <[email protected]> | 2011-07-01 12:38:14 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-07-01 12:38:14 +0000 |
commit | 627b77a266f554b8f001b8d6d1a52f2ab971ff34 (patch) | |
tree | 01364a10259c128d423badf8af5d07558ccc92c9 /libhb/common.c | |
parent | 93017898a926bd2b6c45e763bcccc360b0dff7d5 (diff) |
fix some warnings in the cli
and add printf attribute to hb_strdup_printf
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4081 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c index 2b2917e5d..4acc293e2 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -1344,7 +1344,7 @@ int hb_srt_add( const hb_job_t * job, return retval; } -char * hb_strdup_printf( char * fmt, ... ) +char * hb_strdup_printf( const char * fmt, ... ) { int len; va_list ap; |