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/valprint.c | |
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/valprint.c')
-rw-r--r-- | gdb/valprint.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c index 9ff0f27..a543552 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -432,19 +432,16 @@ value_check_printable (struct value *val, struct ui_file *stream, /* Print using the given LANGUAGE the value VAL onto stream STREAM according to OPTIONS. - If the data are a string pointer, returns the number of string characters - printed. - This is a preferable interface to val_print, above, because it uses GDB's value mechanism. */ -int +void common_val_print (struct value *val, struct ui_file *stream, int recurse, const struct value_print_options *options, const struct language_defn *language) { if (!value_check_printable (val, stream, options)) - return 0; + return; if (language->la_language == language_ada) /* The value might have a dynamic type, which would cause trouble @@ -453,10 +450,10 @@ common_val_print (struct value *val, struct ui_file *stream, int recurse, get a fixed representation of our value. */ val = ada_to_fixed_value (val); - return val_print (value_type (val), value_contents_for_printing (val), - value_embedded_offset (val), value_address (val), - stream, recurse, - val, options, language); + val_print (value_type (val), value_contents_for_printing (val), + value_embedded_offset (val), value_address (val), + stream, recurse, + val, options, language); } /* Print on stream STREAM the value VAL according to OPTIONS. The value |