From: Steven Schubiger Date: Sun, 26 Oct 2014 17:33:22 +0000 (+0100) Subject: Make diagnostics more consistent X-Git-Tag: v0.55~8 X-Git-Url: http://git.refcnt.org/?p=colorize.git;a=commitdiff_plain;h=4fdbee8e6c6763368b779788cb2644304eba2f77 Make diagnostics more consistent --- diff --git a/colorize.c b/colorize.c index cf0c047..c316f17 100644 --- a/colorize.c +++ b/colorize.c @@ -1007,7 +1007,7 @@ malloc_wrap_debug (size_t size, const char *file, unsigned int line) void *p = malloc (size); if (!p) MEM_ALLOC_FAIL_DEBUG (file, line); - vfprintf_diag ("malloc'ed %lu bytes [file %s, line %u]", (unsigned long)size, file, line); + vfprintf_diag ("malloc'ed %lu bytes [source file %s, line %u]", (unsigned long)size, file, line); return p; } @@ -1017,7 +1017,7 @@ calloc_wrap_debug (size_t nmemb, size_t size, const char *file, unsigned int lin void *p = calloc (nmemb, size); if (!p) MEM_ALLOC_FAIL_DEBUG (file, line); - vfprintf_diag ("calloc'ed %lu bytes [file %s, line %u]", (unsigned long)(nmemb * size), file, line); + vfprintf_diag ("calloc'ed %lu bytes [source file %s, line %u]", (unsigned long)(nmemb * size), file, line); return p; } @@ -1027,7 +1027,7 @@ realloc_wrap_debug (void *ptr, size_t size, const char *file, unsigned int line) void *p = realloc (ptr, size); if (!p) MEM_ALLOC_FAIL_DEBUG (file, line); - vfprintf_diag ("realloc'ed %lu bytes [file %s, line %u]", (unsigned long)size, file, line); + vfprintf_diag ("realloc'ed %lu bytes [source file %s, line %u]", (unsigned long)size, file, line); return p; } #endif /* !DEBUG */