diff options
author | Pierre Muller <muller@sourceware.org> | 2011-03-28 15:24:02 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2011-03-28 15:24:02 +0000 |
commit | fbe3e2c8df043884e8cb2f26966a0959b8df8996 (patch) | |
tree | 366f43e11bfe0646dcc7f34d8d0af0bf4a8761b1 /binutils | |
parent | 6a608608d1adfd002420883e8dcf5f8dfec0fdd4 (diff) | |
download | gdb-fbe3e2c8df043884e8cb2f26966a0959b8df8996.zip gdb-fbe3e2c8df043884e8cb2f26966a0959b8df8996.tar.gz gdb-fbe3e2c8df043884e8cb2f26966a0959b8df8996.tar.bz2 |
* coffdump.c (coff_dump): Correct spelling error.
(show_usage): Replace SYSROFF by COFF.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/coffdump.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f806edd..19dc51e 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2011-03-28 Pierre Muller <muller@ics.u-strasbg.fr> + + * coffdump.c (coff_dump): Correct spelling error. + (show_usage): Replace SYSROFF by COFF. + 2011-03-25 Pierre Muller <muller@ics.u-strasbg.fr> * coffdump.c (dump_coff_scope): Use double typecast for pointer P diff --git a/binutils/coffdump.c b/binutils/coffdump.c index d5ccb99..9597a82 100644 --- a/binutils/coffdump.c +++ b/binutils/coffdump.c @@ -444,7 +444,7 @@ coff_dump (struct coff_ofile *ptr) printf ("Coff dump"); nl (); - printf ("#souces %d", ptr->nsources); + printf ("#sources %d", ptr->nsources); nl (); dump_coff_sfile (ptr->source_head); @@ -458,7 +458,7 @@ static void show_usage (FILE *file, int status) { fprintf (file, _("Usage: %s [option(s)] in-file\n"), program_name); - fprintf (file, _(" Print a human readable interpretation of a SYSROFF object file\n")); + fprintf (file, _(" Print a human readable interpretation of a COFF object file\n")); fprintf (file, _(" The options are:\n\ @<file> Read options from <file>\n\ -h --help Display this information\n\ |