1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

(Fdump_emacs): Fix format string.

This commit is contained in:
Kim F. Storm 2004-11-09 13:23:13 +00:00
parent 9f77d2aaef
commit 9b33d5960f

View File

@ -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");