diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-08-15 12:12:47 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-08-15 12:12:47 +0000 |
commit | 849a1d7cc9af208fd7468f77620ddafea8a31d92 (patch) | |
tree | 09bf12315816a49e8df3883074686a3f2553aac0 | |
parent | 61ad16d19e8a98608352f721518b750eed6440a6 (diff) | |
download | gdb-849a1d7cc9af208fd7468f77620ddafea8a31d92.zip gdb-849a1d7cc9af208fd7468f77620ddafea8a31d92.tar.gz gdb-849a1d7cc9af208fd7468f77620ddafea8a31d92.tar.bz2 |
* proc-why.c (proc_prettyfprint_why): Fix format string.
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/proc-why.c | 2 |
2 files changed, 3 insertions, 1 deletions
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 <kettenis@gnu.org> + * proc-why.c (proc_prettyfprint_why): Fix format string. + * solib-osf.c (osf_current_sos): Remove unsused label. * configure.in: Add <ncurses/ncurses.h> 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: |