diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-22 16:31:52 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-02-14 06:22:33 -0700 |
commit | 362501dc5c85ae67c7141292ed5be1bfbd334645 (patch) | |
tree | e69ce79f438247f10faea1fd8ccfa9a35a720f91 /gdb/valprint.c | |
parent | 13eb081a83b6f9b07cf4447e52e1d0503bf90211 (diff) | |
download | gdb-362501dc5c85ae67c7141292ed5be1bfbd334645.zip gdb-362501dc5c85ae67c7141292ed5be1bfbd334645.tar.gz gdb-362501dc5c85ae67c7141292ed5be1bfbd334645.tar.bz2 |
Remove LA_PRINT_CHAR
This removes the LA_PRINT_CHAR macro, in favor of using ordinary
method calls.
Diffstat (limited to 'gdb/valprint.c')
-rw-r--r-- | gdb/valprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c index 25e4a8d..07bc324 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -791,7 +791,7 @@ generic_value_print_char (struct value *value, struct ui_file *stream, else fprintf_filtered (stream, "%d", (int) val); fputs_filtered (" ", stream); - LA_PRINT_CHAR (val, unresolved_type, stream); + current_language->printchar (val, unresolved_type, stream); } } |