From: Ted Lemon Date: Wed, 26 Jan 2000 17:25:24 +0000 (+0000) Subject: When complaining about freeing unknown memory, use the name of the caller. X-Git-Tag: V3-BETA-2-PATCH-1~393 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46c38f9c5bd03e2dc21796959b15befe45e8f375;p=thirdparty%2Fdhcp.git When complaining about freeing unknown memory, use the name of the caller. --- diff --git a/omapip/alloc.c b/omapip/alloc.c index ee4e7221d..fde2d1dc3 100644 --- a/omapip/alloc.c +++ b/omapip/alloc.c @@ -122,7 +122,7 @@ void dfree (ptr, file, line) break; if (!dp) { log_error ("%s(%d): freeing unknown memory: %lx", - dp -> file, dp -> line, (unsigned long)cur); + file, line, (unsigned long)cur); abort (); } if (dp -> prev)