1
mirror of https://github.com/mpv-player/mpv synced 2024-09-28 17:52:52 +02: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:
arpi 2001-09-22 15:43:52 +00:00
parent 07452f11ca
commit bcf66fcbd8

View File

@ -26,7 +26,7 @@ void mp_msg_init(int verbose){
void mp_msg_c( int x, const char *format, ... ){
va_list va;
char tmp[128];
char tmp[8*80];
if((x&255)>mp_msg_levels[x>>8]) return; // do not display
va_start(va, format);
vsnprintf( tmp,128,format,va );