diff options
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/common.c b/libhb/common.c index 8f061e1f9..d0b015505 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -493,7 +493,7 @@ void hb_list_close( hb_list_t ** _l ) *********************************************************************/ void hb_log( char * log, ... ) { - char string[82]; /* 80 chars + \n + \0 */ + char string[182]; /* 180 chars + \n + \0 */ time_t _now; struct tm * now; va_list args; @@ -512,7 +512,7 @@ void hb_log( char * log, ... ) /* Convert the message to a string */ va_start( args, log ); - vsnprintf( string + 11, 69, log, args ); + vsnprintf( string + 11, 169, log, args ); va_end( args ); /* Add the end of line */ |