]> mj.ucw.cz Git - libucw.git/blobdiff - lib/alloc.c
Bug fixes. Robot file parsing.
[libucw.git] / 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;
 }