summaryrefslogtreecommitdiff
path: root/src/sheap.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2013-02-20 16:02:37 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2013-02-20 16:02:37 -0500
commite11dacb57703fb8044332d8a3933b815547911ec (patch)
tree8251ed1f39f821f044f318e9c4b9d6675a67c882 /src/sheap.c
parentb6c2bfff02239197fc855c0575def855afab01c7 (diff)
downloademacs-e11dacb57703fb8044332d8a3933b815547911ec.tar.gz
* src/sheap.c (report_sheap_usage): Prefer message1_nolog.
Diffstat (limited to 'src/sheap.c')
-rw-r--r--src/sheap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sheap.c b/src/sheap.c
index 9e6b7fb1cf1..28597ec9b65 100644
--- a/src/sheap.c
+++ b/src/sheap.c
@@ -91,8 +91,7 @@ report_sheap_usage (int die_if_pure_storage_exceeded)
char buf[200];
sprintf (buf, "Static heap usage: %d of %d bytes",
bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE);
- /* Don't change this call to message1! message1 can log
- messages, and at this point, we're not allowed to create
+ /* Don't log messages, cause at this point, we're not allowed to create
buffers. */
- message ("%s", buf);
+ message1_nolog ("%s", buf);
}