From: Mark Kettenis Date: Sun, 15 Aug 2004 12:12:47 +0000 (+0000) Subject: * proc-why.c (proc_prettyfprint_why): Fix format string. X-Git-Tag: csl-arm-2004-q3~469 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=849a1d7cc9af208fd7468f77620ddafea8a31d92;p=external%2Fbinutils.git * proc-why.c (proc_prettyfprint_why): Fix format string. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 18dfe0e..5996e03 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2004-08-15 Mark Kettenis + * proc-why.c (proc_prettyfprint_why): Fix format string. + * solib-osf.c (osf_current_sos): Remove unsused label. * configure.in: Add to the list of possible diff --git a/gdb/proc-why.c b/gdb/proc-why.c index 15af16c..babaff5 100644 --- a/gdb/proc-why.c +++ b/gdb/proc-why.c @@ -154,7 +154,7 @@ proc_prettyfprint_why (FILE *file, unsigned long why, unsigned long what, #endif #ifdef PR_DEAD case PR_DEAD: - fprintf (file, "Exit status: %d\n", what); + fprintf (file, "Exit status: %ld\n", what); break; #endif default: