From: Holger Hans Peter Freyther Date: Fri, 6 Nov 2009 17:32:06 +0000 (-0800) Subject: Fix spelling in memusagestat.c X-Git-Tag: glibc-2.11.1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=685cb08356bb9408c50970711ba3f4726e95b638;p=thirdparty%2Fglibc.git Fix spelling in memusagestat.c --- diff --git a/ChangeLog b/ChangeLog index a555225823b..97bd4533b3b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-10-30 Holger Hans Peter Freyther + + * malloc/memusagestat.c (main): Fix spelling in an error message. + 2009-11-01 H.J. Lu * elf/dl-sym.c (do_sym): Properly handle STT_GNU_IFUNC symbols. diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c index 4d57f2cc23c..a5a315056bf 100644 --- a/malloc/memusagestat.c +++ b/malloc/memusagestat.c @@ -181,7 +181,7 @@ main (int argc, char *argv[]) || st.st_size < 2 * sizeof (struct entry)) { close (fd); - error (EXIT_FAILURE, 0, "input file as incorrect size"); + error (EXIT_FAILURE, 0, "input file has incorrect size"); } /* Compute number of data entries. */ total = st.st_size / sizeof (struct entry) - 2;