diff options
| author | Ulrich Drepper <[email protected]> | 2009-01-10 18:29:56 -0800 |
|---|---|---|
| committer | Ulrich Drepper <[email protected]> | 2009-01-10 18:29:56 -0800 |
| commit | 8b3946314d253a4ae2c903fd62070adc97be162a (patch) | |
| tree | a1ed042cdb0ee7dae1bfdf90467463b45986b2b7 | |
| parent | 21fd1d82f1b9948e71c229996a662d067516b251 (diff) | |
Fix type in error message in strings.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/strings.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f4af164b..854ad699 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-01-10 Ulrich Drepper <[email protected]> + + * strings.c (read_block): Fix typo in error message string. + 2009-01-07 Ulrich Drepper <[email protected]> * ld.c (ld_new_searchdir): Fix adding to search path list. diff --git a/src/strings.c b/src/strings.c index fb7f0b16..aebf07bd 100644 --- a/src/strings.c +++ b/src/strings.c @@ -677,7 +677,7 @@ read_block (int fd, const char *fname, off64_t fdlen, off64_t from, off64_t to) if (mmap64 (remap_base, read_now, PROT_READ, MAP_PRIVATE | MAP_POPULATE | MAP_FIXED, fd, handled_to) == MAP_FAILED) - error (EXIT_FAILURE, errno, gettext ("re=mmap failed")); + error (EXIT_FAILURE, errno, gettext ("re-mmap failed")); elfmap_off = handled_to; process_chunk (fname, remap_base - to_keep, |
