summaryrefslogtreecommitdiff
path: root/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'alloc.c')
-rw-r--r--alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/alloc.c b/alloc.c
index 9dbeadb7..d1f06470 100644
--- a/alloc.c
+++ b/alloc.c
@@ -1,6 +1,6 @@
/* alloc.c
- Memory allocation...
+ Memory allocation... */
/*
* Copyright (c) 1995 The Internet Software Consortium. All rights reserved.
@@ -55,7 +55,7 @@ VOIDPTR dmalloc (size, name)
{
VOIDPTR foo = (VOIDPTR)malloc (size);
if (!foo)
- warn ("No memory for %s.\n");
+ warn ("No memory for %s.", name);
return foo;
}