From: Ken Brown Date: Thu, 21 Feb 2013 02:35:33 +0000 (-0500) Subject: * src/sheap.c (report_sheap_usage): Fix arguments of message1_no_log. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/6bcd97a44a1d7e5da149341465564cba65eb7b63 * src/sheap.c (report_sheap_usage): Fix arguments of message1_no_log. --- diff --git a/src/ChangeLog b/src/ChangeLog index d39336f11e..ff45c4b2a8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2013-02-21 Ken Brown + + * sheap.c (report_sheap_usage): Fix arguments of message1_no_log. + 2013-02-20 Stefan Monnier * sheap.c (report_sheap_usage): Prefer message1_nolog. diff --git a/src/sheap.c b/src/sheap.c index 28597ec9b6..f8eec75326 100644 --- a/src/sheap.c +++ b/src/sheap.c @@ -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); }