From 8b3946314d253a4ae2c903fd62070adc97be162a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 10 Jan 2009 18:29:56 -0800 Subject: [PATCH] Fix type in error message in strings. --- src/ChangeLog | 4 ++++ src/strings.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index f4af164b3..854ad699d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-01-10 Ulrich Drepper + + * strings.c (read_block): Fix typo in error message string. + 2009-01-07 Ulrich Drepper * ld.c (ld_new_searchdir): Fix adding to search path list. diff --git a/src/strings.c b/src/strings.c index fb7f0b16f..aebf07bdf 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, -- 2.47.2