diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2009-11-06 09:32:06 -0800 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-11-06 09:32:06 -0800 |
commit | 685cb08356bb9408c50970711ba3f4726e95b638 (patch) | |
tree | 4304e084a69053a81a52d252515171f3a654ba0e | |
parent | 8608ae1f7ba31f2149f9620a1339020339eac00d (diff) | |
download | glibc-685cb08356bb9408c50970711ba3f4726e95b638.zip glibc-685cb08356bb9408c50970711ba3f4726e95b638.tar.gz glibc-685cb08356bb9408c50970711ba3f4726e95b638.tar.bz2 |
Fix spelling in memusagestat.c
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | malloc/memusagestat.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2009-10-30 Holger Hans Peter Freyther <zecke@selfish.org> + + * malloc/memusagestat.c (main): Fix spelling in an error message. + 2009-11-01 H.J. Lu <hongjiu.lu@intel.com> * elf/dl-sym.c (do_sym): Properly handle STT_GNU_IFUNC symbols. diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c index 4d57f2c..a5a3150 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; |