From: Martin Mares Date: Fri, 11 Apr 1997 15:40:01 +0000 (+0000) Subject: Bug fixes. Robot file parsing. X-Git-Tag: holmes-import~1704 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=0e7d50eaa3d75b0093d44e7e632315ec70ceddcf;p=libucw.git Bug fixes. Robot file parsing. --- diff --git a/lib/alloc.c b/lib/alloc.c index 65594669..c72851ee 100644 --- a/lib/alloc.c +++ b/lib/alloc.c @@ -14,6 +14,6 @@ xmalloc(uns size) { void *x = malloc(size); if (!x) - die("Cannot allocate %d bytes of memory", size); + die("Cannot allocate %d bytes of memory", size); return x; }