diff options
| author | Joakim Verona | 2013-02-21 00:04:28 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-02-21 00:04:28 +0100 |
| commit | f0f34630a4c8b467df3ec7eb445ceedd93a12a71 (patch) | |
| tree | 8a3b203c6f091c698fcfb3ccd055f330e07e539d /src/sheap.c | |
| parent | 10fc3c3866ede374437a72f2e8c1cd7c0f51a8fa (diff) | |
| parent | e11dacb57703fb8044332d8a3933b815547911ec (diff) | |
| download | emacs-f0f34630a4c8b467df3ec7eb445ceedd93a12a71.tar.gz emacs-f0f34630a4c8b467df3ec7eb445ceedd93a12a71.zip | |
auto upstream
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 | } |