* src/sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
authorKen Brown <kbrown@cornell.edu>
Thu, 21 Feb 2013 02:35:33 +0000 (21:35 -0500)
committerKen Brown <kbrown@cornell.edu>
Thu, 21 Feb 2013 02:35:33 +0000 (21:35 -0500)
src/ChangeLog
src/sheap.c

index d39336f..ff45c4b 100644 (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.
index 28597ec..f8eec75 100644 (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);
 }