]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/alloc.c
Tweak Win32 build
[bacula/bacula] / bacula / src / lib / alloc.c
index 241749a4396acdbc557ab5505f6cd0c9ac05295f..8de592cf1dc4ec5f49549dfff2125ab192904358 100644 (file)
@@ -52,8 +52,8 @@ void *sm_alloc(char *fname, int lineno, unsigned int nbytes)
        if ((buf = sm_malloc(fname, lineno, nbytes)) != NULL) {
           return buf;
        }
-        V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
-        V fprintf(stderr, "  Requested %u bytes at line %d of %s.\n",
+       V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
+       V fprintf(stderr, "  Requested %u bytes at line %d of %s.\n",
           nbytes, lineno, fname);
        abort();
        /*NOTREACHED*/
@@ -69,8 +69,8 @@ void *alloc(unsigned int nbytes)
        if ((buf = malloc(nbytes)) != NULL) {
           return buf;
        }
-        V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
-        V fprintf(stderr, "  Requested %u bytes.\n", nbytes);
+       V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
+       V fprintf(stderr, "  Requested %u bytes.\n", nbytes);
        abort();
        /*NOTREACHED*/
 }