aboutsummaryrefslogtreecommitdiffstats
path: root/astmm.c
diff options
context:
space:
mode:
Diffstat (limited to 'astmm.c')
-rw-r--r--astmm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/astmm.c b/astmm.c
index 122504a58..c3b26a356 100644
--- a/astmm.c
+++ b/astmm.c
@@ -108,9 +108,9 @@ static inline void *__ast_alloc_region(size_t size, const enum func_type which,
}
ast_mutex_unlock(&reglock);
if (!reg) {
- fprintf(stderr, "Memory allocation failure\n");
+ fprintf(stderr, "Memory Allocation Failure - '%d' bytes in function %s at line %d of %s\n", (int) size, func, lineno, file);
if (mmlog) {
- fprintf(mmlog, "%ld - Memory allocation failure\n", time(NULL));
+ fprintf(stderr, "%ld - Memory Allocation Failure - '%d' bytes in function %s at line %d of %s\n", time(NULL), (int) size, func, lineno, file);
fflush(mmlog);
}
}