Fixed compiler warning - DEBUGF statement with too many arguments

This commit is contained in:
kieranm 2002-12-05 09:38:25 +00:00
parent 6972e81ac0
commit 96610c9c20

View File

@ -648,7 +648,7 @@ pbuf_unref(struct pbuf *f)
/* deallocate chain */
pbuf_free(f);
f = NULL;
DEBUGF(PBUF_DEBUG, ("pbuf_unref: failed\n", f));
DEBUGF(PBUF_DEBUG, ("pbuf_unref: failed\n"));
return NULL;
}
}