]> mj.ucw.cz Git - libucw.git/commitdiff
Bug fixes. Robot file parsing.
authorMartin Mares <mj@ucw.cz>
Fri, 11 Apr 1997 15:40:01 +0000 (15:40 +0000)
committerMartin Mares <mj@ucw.cz>
Fri, 11 Apr 1997 15:40:01 +0000 (15:40 +0000)
lib/alloc.c

index 65594669234328ad0316a2b956d2434f815479b9..c72851eec33c7cf4eebdb27e9ff6c9421aabff5b 100644 (file)
@@ -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;
 }