From 6bcd97a44a1d7e5da149341465564cba65eb7b63 Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Wed, 20 Feb 2013 21:35:33 -0500 Subject: [PATCH] * src/sheap.c (report_sheap_usage): Fix arguments of message1_no_log. --- src/ChangeLog | 4 ++++ src/sheap.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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); } -- 2.20.1