aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2004-11-09 13:23:13 +0000
committerKim F. Storm <[email protected]>2004-11-09 13:23:13 +0000
commit9b33d5960f6dc5bd0e41d679841661096dbd7f30 (patch)
treea818e93acb681dc6efffdb01dad75ef7b570c354 /src/emacs.c
parent9f77d2aaefd4301e49d9c2dcce5475dfbed1fc63 (diff)
(Fdump_emacs): Fix format string.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 3ca1022a08..fc158693e4 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -2184,7 +2184,7 @@ You must run Emacs in batch mode in order to dump it. */)
{
fprintf (stderr, "**************************************************\n");
fprintf (stderr, "Warning: Your system has a gap between BSS and the\n");
- fprintf (stderr, "heap (%d byte). This usually means that exec-shield\n",
+ fprintf (stderr, "heap (%lu byte). This usually means that exec-shield\n",
heap_bss_diff);
fprintf (stderr, "or something similar is in effect. The dump may\n");
fprintf (stderr, "fail because of this. See the section about \n");