diff options
| author | Ken Brown | 2013-02-20 21:35:33 -0500 |
|---|---|---|
| committer | Ken Brown | 2013-02-20 21:35:33 -0500 |
| commit | 6bcd97a44a1d7e5da149341465564cba65eb7b63 (patch) | |
| tree | 59d6a97aa4c233d26081aa614d1e1db8f9b35688 /src | |
| parent | e11dacb57703fb8044332d8a3933b815547911ec (diff) | |
| download | emacs-6bcd97a44a1d7e5da149341465564cba65eb7b63.tar.gz emacs-6bcd97a44a1d7e5da149341465564cba65eb7b63.zip | |
* src/sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
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 | } |