diff options
author | eddyg <[email protected]> | 2008-01-31 23:28:02 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-01-31 23:28:02 +0000 |
commit | 040cab19c1151d50063d602f336bd86b2430ca5d (patch) | |
tree | 14bf2437befbbbfe2ff9f9c8e49fd27bcdbe7f6e /libhb/common.c | |
parent | 53c75f918caecbba4034747ae79a4696984e3721 (diff) |
Double hb_log() max line length to avoid truncation of x264 options in display.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1244 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 b23f42d4b..5608abe6f 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -496,7 +496,7 @@ void hb_list_close( hb_list_t ** _l ) *********************************************************************/ void hb_log( char * log, ... ) { - char string[182]; /* 180 chars + \n + \0 */ + char string[362]; /* 360 chars + \n + \0 */ time_t _now; struct tm * now; va_list args; |