Add missing argument.

This commit is contained in:
W. Eric Norum
2005-02-11 19:54:29 +00:00
parent 08ad74d64e
commit cdb6ba4a83

View File

@@ -157,7 +157,7 @@ mustMalloc(int size, const char *msg)
void *p;
if ((p = malloc (size)) == NULL)
LogFatal ("Can't allocate space for %s.\n");
LogFatal ("Can't allocate space for %s.\n", msg);
return p;
}