diff options
Diffstat (limited to 'src/sheap.c')
| -rw-r--r-- | src/sheap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sheap.c b/src/sheap.c index 06e205bc0e5..28597ec9b65 100644 --- a/src/sheap.c +++ b/src/sheap.c | |||
| @@ -91,5 +91,7 @@ report_sheap_usage (int die_if_pure_storage_exceeded) | |||
| 91 | char buf[200]; | 91 | char buf[200]; |
| 92 | sprintf (buf, "Static heap usage: %d of %d bytes", | 92 | sprintf (buf, "Static heap usage: %d of %d bytes", |
| 93 | bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); | 93 | bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); |
| 94 | message1 (buf); | 94 | /* Don't log messages, cause at this point, we're not allowed to create |
| 95 | buffers. */ | ||
| 96 | message1_nolog ("%s", buf); | ||
| 95 | } | 97 | } |