aboutsummaryrefslogtreecommitdiffstats
path: root/src/sheap.c
diff options
context:
space:
mode:
authorKen Brown2013-02-20 21:35:33 -0500
committerKen Brown2013-02-20 21:35:33 -0500
commit6bcd97a44a1d7e5da149341465564cba65eb7b63 (patch)
tree59d6a97aa4c233d26081aa614d1e1db8f9b35688 /src/sheap.c
parente11dacb57703fb8044332d8a3933b815547911ec (diff)
downloademacs-6bcd97a44a1d7e5da149341465564cba65eb7b63.tar.gz
emacs-6bcd97a44a1d7e5da149341465564cba65eb7b63.zip
* src/sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
Diffstat (limited to 'src/sheap.c')
-rw-r--r--src/sheap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sheap.c b/src/sheap.c
index 28597ec9b65..f8eec753268 100644
--- a/src/sheap.c
+++ b/src/sheap.c
@@ -93,5 +93,5 @@ report_sheap_usage (int die_if_pure_storage_exceeded)
93 bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); 93 bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE);
94 /* Don't log messages, cause at this point, we're not allowed to create 94 /* Don't log messages, cause at this point, we're not allowed to create
95 buffers. */ 95 buffers. */
96 message1_nolog ("%s", buf); 96 message1_nolog (buf);
97} 97}