diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-08 15:54:59 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-08 15:54:59 -0800 |
commit | b10d3744ee728bcc5186a7a9198a5b31119dfbc3 (patch) | |
tree | 7245597139a06d0482f002902e92319f1317bb68 | |
parent | 42fa3cfbd1bc324c581b3acca464df7a731f2205 (diff) | |
download | gcc-b10d3744ee728bcc5186a7a9198a5b31119dfbc3.zip gcc-b10d3744ee728bcc5186a7a9198a5b31119dfbc3.tar.gz gcc-b10d3744ee728bcc5186a7a9198a5b31119dfbc3.tar.bz2 |
(print_file_desc): Correct printf format.
(main): Likewise.
From-SVN: r6501
-rw-r--r-- | gcc/mips-tdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/mips-tdump.c b/gcc/mips-tdump.c index 789a0fd..f31a92b 100644 --- a/gcc/mips-tdump.c +++ b/gcc/mips-tdump.c @@ -1171,7 +1171,7 @@ print_file_desc (fdp, number) (ulong) (fdp->copt * sizeof (OPTR)), (ulong) (fdp->ioptBase * sizeof (OPTR) + sym_hdr.cbOptOffset)); - printf(" %-*s %11llu %11lu %11lu %11lu\n", + printf(" %-*s %11lu %11lu %11lu %11lu\n", width, "Procedures", (ulong) fdp->ipdFirst, (ulong) fdp->cpd, @@ -1457,7 +1457,7 @@ main (argc, argv) if (errors || optind != argc - 1) { fprintf (stderr, "Calling Sequence:\n"); - fprintf (stderr, "\t%0 [-alrst] <object-or-T-file>\n", argv[0]); + fprintf (stderr, "\t%s [-alrst] <object-or-T-file>\n", argv[0]); fprintf (stderr, "\n"); fprintf (stderr, "switches:\n"); fprintf (stderr, "\t-a Print out auxiliary table.\n"); |