diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/sheap.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d39336f11e6..ff45c4b2a83 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-02-21 Ken Brown <kbrown@cornell.edu> | ||
| 2 | |||
| 3 | * sheap.c (report_sheap_usage): Fix arguments of message1_no_log. | ||
| 4 | |||
| 1 | 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * sheap.c (report_sheap_usage): Prefer message1_nolog. | 7 | * sheap.c (report_sheap_usage): Prefer message1_nolog. |
diff --git a/src/sheap.c b/src/sheap.c index 28597ec9b65..f8eec753268 100644 --- a/src/sheap.c +++ b/src/sheap.c | |||
| @@ -93,5 +93,5 @@ report_sheap_usage (int die_if_pure_storage_exceeded) | |||
| 93 | bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); | 93 | bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); |
| 94 | /* Don't log messages, cause at this point, we're not allowed to create | 94 | /* Don't log messages, cause at this point, we're not allowed to create |
| 95 | buffers. */ | 95 | buffers. */ |
| 96 | message1_nolog ("%s", buf); | 96 | message1_nolog (buf); |
| 97 | } | 97 | } |