diff options
| -rw-r--r-- | FICS/rmalloc.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/FICS/rmalloc.c b/FICS/rmalloc.c index 0a8f46d..3e4e3ee 100644 --- a/FICS/rmalloc.c +++ b/FICS/rmalloc.c @@ -45,7 +45,7 @@ rmalloc(int byteSize) malloc_count++; if ((newptr = malloc(byteSize)) == NULL) { - fprintf(stderr, "Out of memory in %s()!\n", __func__); + (void) fprintf(stderr, "Out of memory in %s()!\n", __func__); abort(); } @@ -60,13 +60,15 @@ rrealloc(void *ptr, int byteSize) #endif if (ptr == NULL) { - fprintf(stderr, "Hoser! Null ptr passed to %s()!\n", __func__); + (void) fprintf(stderr, "Hoser! Null ptr passed to %s()!\n", + __func__); return NULL; } else { void *newptr; if ((newptr = realloc(ptr, byteSize)) == NULL) { - fprintf(stderr, "Out of memory in %s()!\n", __func__); + (void) fprintf(stderr, "Out of memory in %s()!\n", + __func__); abort(); } @@ -82,7 +84,8 @@ rfree(void *ptr) #endif if (ptr == NULL) { - fprintf(stderr, "Hoser! Null ptr passed to %s()!\n", __func__); + (void) fprintf(stderr, "Hoser! Null ptr passed to %s()!\n", + __func__); } else { free_count++; free(ptr); |
