* src/sheap.c (report_sheap_usage): Fix arguments of message1_no_log.

This commit is contained in:
Ken Brown 2013-02-20 21:35:33 -05:00
parent e11dacb577
commit 6bcd97a44a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-02-21 Ken Brown <kbrown@cornell.edu>
* sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
* sheap.c (report_sheap_usage): Prefer message1_nolog.

View file

@ -93,5 +93,5 @@ report_sheap_usage (int die_if_pure_storage_exceeded)
bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE);
/* Don't log messages, cause at this point, we're not allowed to create
buffers. */
message1_nolog ("%s", buf);
message1_nolog (buf);
}