]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
When complaining about freeing unknown memory, use the name of the caller.
authorTed Lemon <source@isc.org>
Wed, 26 Jan 2000 17:25:24 +0000 (17:25 +0000)
committerTed Lemon <source@isc.org>
Wed, 26 Jan 2000 17:25:24 +0000 (17:25 +0000)
omapip/alloc.c

index ee4e7221dc99e7691405b17be5f0b7e225eb9f9d..fde2d1dc3b1aae61635ce2b97e3b4757ecb93b46 100644 (file)
@@ -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)