Nuke some dprintfs

This commit is contained in:
Brian Koropoff 2003-05-15 22:39:04 +00:00
parent 0ba2481632
commit 6eaa5518a4

View file

@ -75,13 +75,13 @@ void
GIB_Tree_Ref (gib_tree_t ** tp)
{
(*tp)->refs++;
Sys_DPrintf ("Ref: %p %u\n", *tp, (*tp)->refs);
// Sys_DPrintf ("Ref: %p %u\n", *tp, (*tp)->refs);
}
void
GIB_Tree_Unref (gib_tree_t ** tp)
{
Sys_DPrintf ("Unref: %p %u\n", *tp, (*tp)->refs - 1);
// Sys_DPrintf ("Unref: %p %u\n", *tp, (*tp)->refs - 1);
if (!(--(*tp)->refs)) {
GIB_Tree_Free_Recursive (*tp);
*tp = 0;