From bb7d71b99f8ee120977f6b438bda2ffe93501ff0 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Wed, 21 Aug 2002 17:11:00 +0000 Subject: s/EDOFUS/EDOOFUS/ Persuaded by: Google --- lib/libc/stdlib/malloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc/stdlib') diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index d97e87241df6..fdcc751f3036 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -1093,7 +1093,7 @@ malloc(size_t size) wrtwarning("recursive call\n"); malloc_active--; THREAD_UNLOCK(); - errno = EDOFUS; + errno = EDOOFUS; return (0); } if (!malloc_started) @@ -1123,7 +1123,7 @@ free(void *ptr) wrtwarning("recursive call\n"); malloc_active--; THREAD_UNLOCK(); - errno = EDOFUS; + errno = EDOOFUS; return; } if (ptr != ZEROSIZEPTR) @@ -1146,7 +1146,7 @@ realloc(void *ptr, size_t size) wrtwarning("recursive call\n"); malloc_active--; THREAD_UNLOCK(); - errno = EDOFUS; + errno = EDOOFUS; return (0); } if (ptr && !malloc_started) { -- cgit v1.2.3