mirror of
https://github.com/mpv-player/mpv
synced 2025-01-24 00:23:27 +00:00
increased max msg size
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1935 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
07452f11ca
commit
bcf66fcbd8
2
mp_msg.c
2
mp_msg.c
@ -26,7 +26,7 @@ void mp_msg_init(int verbose){
|
|||||||
|
|
||||||
void mp_msg_c( int x, const char *format, ... ){
|
void mp_msg_c( int x, const char *format, ... ){
|
||||||
va_list va;
|
va_list va;
|
||||||
char tmp[128];
|
char tmp[8*80];
|
||||||
if((x&255)>mp_msg_levels[x>>8]) return; // do not display
|
if((x&255)>mp_msg_levels[x>>8]) return; // do not display
|
||||||
va_start(va, format);
|
va_start(va, format);
|
||||||
vsnprintf( tmp,128,format,va );
|
vsnprintf( tmp,128,format,va );
|
||||||
|
Loading…
Reference in New Issue
Block a user