From: Kim F. Storm Date: Tue, 9 Nov 2004 13:23:13 +0000 (+0000) Subject: (Fdump_emacs): Fix format string. X-Git-Tag: ttn-vms-21-2-B4~4055 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9b33d5960f6dc5bd0e41d679841661096dbd7f30;p=emacs.git (Fdump_emacs): Fix format string. --- diff --git a/src/emacs.c b/src/emacs.c index 3ca1022a08e..fc158693e47 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");