aboutsummaryrefslogtreecommitdiff
path: root/lib/libstand
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2002-08-21 09:30:45 +0000
committerScott Long <scottl@FreeBSD.org>2002-08-21 09:30:45 +0000
commit9fdff10aa032eb10582f9a9e91febfe5d84c1ef0 (patch)
treec2f5c6c1e0a46767973b43e2923a2c507d9ee85c /lib/libstand
parent7effdac07aa52f052a1b6c0aa1e86d76d6034bfd (diff)
downloadsrc-9fdff10aa032eb10582f9a9e91febfe5d84c1ef0.tar.gz
src-9fdff10aa032eb10582f9a9e91febfe5d84c1ef0.zip
Fix a typo in #if 0 code
Notes
Notes: svn path=/head/; revision=102216
Diffstat (limited to 'lib/libstand')
-rw-r--r--lib/libstand/stand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h
index a062179dc853..44656df83d34 100644
--- a/lib/libstand/stand.h
+++ b/lib/libstand/stand.h
@@ -402,7 +402,7 @@ void Free(void *, const char *, int);
#define free(x) Free(x, __FILE__, __LINE__)
#define realloc(x, y) Realloc(x, y, __FILE__, __LINE__)
#else
-#define malloc(x) Malloc(x, NULL 0)
+#define malloc(x) Malloc(x, NULL, 0)
#define calloc(x, y) Calloc(x, y, NULL, 0)
#define free(x) Free(x, NULL, 0)
#define realloc(x, y) Realloc(x, y, NULL, 0)