From c258c7a224114788d45f76b6ebf9cc05a4434734 Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Wed, 26 Jan 2000 16:00:08 +0000 Subject: Use malloc, not dmalloc, within dmalloc. :') --- omapip/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'omapip/alloc.c') diff --git a/omapip/alloc.c b/omapip/alloc.c index dfa55b67..ee4e7221 100644 --- a/omapip/alloc.c +++ b/omapip/alloc.c @@ -41,7 +41,7 @@ VOIDPTR dmalloc (size, file, line) const char *file; int line; { - unsigned char *foo = dmalloc (size + DMDSIZE, file, line); + unsigned char *foo = malloc (size + DMDSIZE); int i; VOIDPTR *bar; #if defined (DEBUG_MEMORY_LEAKAGE) || defined (DEBUG_MALLOC_POOL) -- cgit v1.2.1