src/common.c: Not enough memory is an error, not a debug message!
authorFlorian Forster <octo@huhu.verplant.org>
Fri, 20 Jun 2008 12:47:16 +0000 (14:47 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Fri, 20 Jun 2008 12:47:16 +0000 (14:47 +0200)
src/common.c

index 56fa696..82b4aaa 100644 (file)
@@ -70,12 +70,12 @@ char *sstrdup (const char *s)
 
        if((r = strdup (s)) == NULL)
        {
-               DEBUG ("Not enough memory.");
-               exit(3);
+               ERROR ("Not enough memory.");
+               exit (3);
        }
 
        return (r);
-}
+} /* char *sstrdup */
 
 /* Even though Posix requires "strerror_r" to return an "int",
  * some systems (e.g. the GNU libc) return a "char *" _and_
@@ -131,12 +131,12 @@ void *smalloc (size_t size)
 
        if ((r = malloc (size)) == NULL)
        {
-               DEBUG("Not enough memory.");
-               exit(3);
+               ERROR ("Not enough memory.");
+               exit (3);
        }
 
-       return r;
-}
+       return (r);
+} /* void *smalloc */
 
 #if 0
 void sfree (void **ptr)