aboutsummaryrefslogtreecommitdiffstats
path: root/src/sheap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sheap.c')
-rw-r--r--src/sheap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sheap.c b/src/sheap.c
index f6022ea3ce7..f8eec753268 100644
--- a/src/sheap.c
+++ b/src/sheap.c
@@ -1,7 +1,7 @@
1/* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin; 1/* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin;
2 complete rewrite of xemacs Cygwin `unexec' code 2 complete rewrite of xemacs Cygwin `unexec' code
3 3
4 Copyright (C) 2004-2012 Free Software Foundation, Inc. 4 Copyright (C) 2004-2013 Free Software Foundation, Inc.
5 5
6This file is part of GNU Emacs. 6This file is part of GNU Emacs.
7 7
@@ -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 message ("%s", buf); 94 /* Don't log messages, cause at this point, we're not allowed to create
95 buffers. */
96 message1_nolog (buf);
95} 97}