diff options
author | Fred Fish <fnf@specifix.com> | 1993-05-01 23:09:11 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-05-01 23:09:11 +0000 |
commit | 9b25bb09ce4bbda16d258142c62c4137553fbc24 (patch) | |
tree | a79f2b32066781a6f016714f8ba093e3f1ae0187 | |
parent | 23654371e6f1ffa8b50ad13d3300fce368f3023d (diff) | |
download | gdb-9b25bb09ce4bbda16d258142c62c4137553fbc24.zip gdb-9b25bb09ce4bbda16d258142c62c4137553fbc24.tar.gz gdb-9b25bb09ce4bbda16d258142c62c4137553fbc24.tar.bz2 |
* valprint.c (print_longest): Change format parameter from a
'char' to an 'int'. We can't have 'char' parameters with the
current coding style, where we mix prototypes with pre-ANSI
style declarations.
* value.h (print_longest): Change format parameter in prototype
from a 'char' to an 'int'.
-rw-r--r-- | gdb/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0d33424..92076d7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +Sat May 1 16:05:24 1993 Fred Fish (fnf@cygnus.com) + + * valprint.c (print_longest): Change format parameter from a + 'char' to an 'int'. We can't have 'char' parameters with the + current coding style, where we mix prototypes with pre-ANSI + style declarations. + * value.h (print_longest): Change format parameter in prototype + from a 'char' to an 'int'. + Sat May 1 02:47:20 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * config/mips/tm-mips.h (STAB_REG_TO_REGNUM): Match it with the gcc |