diff options
author | jstebbins <[email protected]> | 2015-06-09 15:17:26 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-06-09 15:17:26 +0000 |
commit | d5e99f4c6a77a064ca2a461a5d66957febb9c5c1 (patch) | |
tree | 874e6e6cb9fe5df3e29487ffcb2aefe211e5aff6 /libhb/common.h | |
parent | 95d24edb1c942ded3aea58e977888cc127455036 (diff) |
libhb: Eliminate string length limit in hb_valog
This eliminates the length limit of all libhb logging functions. The
previous limit was 361 chars. Now it is only limited by available
memory.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7280 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index ce5dc8841..158ade247 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -1246,6 +1246,7 @@ typedef void hb_error_handler_t( const char *errmsg ); extern void hb_register_error_handler( hb_error_handler_t * handler ); +char * hb_strdup_vaprintf( const char * fmt, va_list args ); char * hb_strdup_printf(const char *fmt, ...) HB_WPRINTF(1, 2); char * hb_strncat_dup( const char * s1, const char * s2, size_t n ); |