diff options
author | Tom Tromey <tromey@redhat.com> | 2012-03-01 19:23:36 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-03-01 19:23:36 +0000 |
commit | a1f5dd1b0dfee18785876602080b0f15a1fe4573 (patch) | |
tree | 29c8b2d2a625a5f1673b8ef918741768b50fed8c /gdb/value.h | |
parent | 8e069a981cbb9b33ccfbdd82ad7da5ce8b0c35b2 (diff) | |
download | gdb-a1f5dd1b0dfee18785876602080b0f15a1fe4573.zip gdb-a1f5dd1b0dfee18785876602080b0f15a1fe4573.tar.gz gdb-a1f5dd1b0dfee18785876602080b0f15a1fe4573.tar.bz2 |
* value.h (common_val_print): Return void.
* valprint.c (common_val_print): Return void.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/value.h b/gdb/value.h index 9706e70..bb6f1f6 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -824,10 +824,10 @@ extern int val_print (struct type *type, const gdb_byte *valaddr, const struct value_print_options *options, const struct language_defn *language); -extern int common_val_print (struct value *val, - struct ui_file *stream, int recurse, - const struct value_print_options *options, - const struct language_defn *language); +extern void common_val_print (struct value *val, + struct ui_file *stream, int recurse, + const struct value_print_options *options, + const struct language_defn *language); extern int val_print_string (struct type *elttype, const char *encoding, CORE_ADDR addr, int len, |