diff options
| author | Andreas Schwab | 2009-02-07 13:07:38 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2009-02-07 13:07:38 +0000 |
| commit | 4470a277fef8e791c9178b3f710eaef2031918c1 (patch) | |
| tree | 61019d61f2f5952f69b8430b117a59186813dfe4 /src | |
| parent | aaaaa2767d1a58d8d667eb9c9bf14539b817f39b (diff) | |
| download | emacs-4470a277fef8e791c9178b3f710eaef2031918c1.tar.gz emacs-4470a277fef8e791c9178b3f710eaef2031918c1.zip | |
(unexec): Fix error message.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/unexelf.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 280af6c8b42..4cd88a056ee 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-02-07 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * unexelf.c (unexec): Fix error message. | ||
| 4 | |||
| 1 | 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com> | 5 | 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com> |
| 2 | 6 | ||
| 3 | * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event | 7 | * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event |
diff --git a/src/unexelf.c b/src/unexelf.c index 4e1e39a3f70..83e57003759 100644 --- a/src/unexelf.c +++ b/src/unexelf.c | |||
| @@ -1278,7 +1278,7 @@ unexec (new_name, old_name, data_start, bss_start, entry_address) | |||
| 1278 | new_file_size, errno); | 1278 | new_file_size, errno); |
| 1279 | #else | 1279 | #else |
| 1280 | fatal ("Didn't write %d bytes to %s: errno %d\n", | 1280 | fatal ("Didn't write %d bytes to %s: errno %d\n", |
| 1281 | new_file_size, new_base, errno); | 1281 | new_file_size, new_name, errno); |
| 1282 | #endif | 1282 | #endif |
| 1283 | munmap (old_base, old_file_size); | 1283 | munmap (old_base, old_file_size); |
| 1284 | munmap (new_base, new_file_size); | 1284 | munmap (new_base, new_file_size); |