mirror of https://github.com/mpv-player/mpv
Less verbosity by moving some debug messages from printf --> dbgprintf.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12259 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
1bb686c1c6
commit
14d6e9b032
|
@ -403,7 +403,7 @@ static int my_release(void* memory)
|
|||
|
||||
if (header->deadbeef != (long) 0xdeadbeef)
|
||||
{
|
||||
printf("FATAL releasing corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt);
|
||||
dbgprintf("FATAL releasing corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -1663,7 +1663,7 @@ static int WINAPI expGlobalSize(void* amem)
|
|||
{
|
||||
if (header->deadbeef != 0xdeadbeef)
|
||||
{
|
||||
printf("FATAL found corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt);
|
||||
dbgprintf("FATAL found corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -5332,7 +5332,7 @@ void my_garbagecollection(void)
|
|||
if (--max_fatal < 0)
|
||||
break;
|
||||
}
|
||||
printf("Total Unfree %d bytes cnt %d [%p,%d]\n",unfree, unfreecnt, last_alloc, alccnt);
|
||||
dbgprintf("Total Unfree %d bytes cnt %d [%p,%d]\n",unfree, unfreecnt, last_alloc, alccnt);
|
||||
#endif
|
||||
g_tls = NULL;
|
||||
list = NULL;
|
||||
|
|
Loading…
Reference in New Issue