diff options
Diffstat (limited to 'Src/mem.c')
-rw-r--r-- | Src/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -958,7 +958,7 @@ malloc(MALLOC_ARG_T size) n = (size + M_HSIZE + M_ALLOC + m_pgsz - 1) & ~(m_pgsz - 1); if (((char *)(m = (struct m_hdr *)sbrk(n))) == ((char *)-1)) { - DPUTS(1, "MEM: allocation error at sbrk."); + DPUTS1(1, "MEM: allocation error at sbrk, size %L.", n); unqueue_signals(); return NULL; } |