Mercurial > hg > xemacs-beta
changeset 2022:d31a2df82ddb
[xemacs-hg @ 2004-04-17 13:29:19 by olivierg]
Fix error message
author | olivierg |
---|---|
date | Sat, 17 Apr 2004 13:29:20 +0000 |
parents | cb22c508fb00 |
children | eeb8b70b0644 |
files | lib-src/ChangeLog lib-src/insert-data-in-exec.c |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/ChangeLog Sat Apr 17 09:59:25 2004 +0000 +++ b/lib-src/ChangeLog Sat Apr 17 13:29:20 2004 +0000 @@ -1,3 +1,7 @@ +2004-04-17 Olivier Galibert <galibert@pobox.com> + + * insert-data-in-exec.c (main): Fix error message. + 2003-12-07 Olivier Galibert <galibert@pobox.com> * Makefile.in.in (insert-data-in-exec): Added target.
--- a/lib-src/insert-data-in-exec.c Sat Apr 17 09:59:25 2004 +0000 +++ b/lib-src/insert-data-in-exec.c Sat Apr 17 13:29:20 2004 +0000 @@ -139,7 +139,7 @@ } if(size_dump > max_size) { - fprintf(stderr, "Dump file too big for available space (max=%ld, dump=%ld)\n", max_size, size); + fprintf(stderr, "Dump file too big for available space (max=%ld, dump=%ld)\n", max_size, size_dump); exit(2); }