diff options
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 91a5941..395c6e9 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -2516,7 +2516,7 @@ generic_printstr (struct ui_file *stream, struct type *type, if (length == 0) { - gdb_puts ("\"\"", stream); + gdb_printf (stream, "%c%c", quote_char, quote_char); return; } |