diff options
Diffstat (limited to 'gdb/c-valprint.c')
-rw-r--r-- | gdb/c-valprint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c index 01b1071cb70..f2d4cc930ca 100644 --- a/gdb/c-valprint.c +++ b/gdb/c-valprint.c @@ -493,9 +493,9 @@ c_value_print (struct value *val, struct ui_file *stream, struct type *original_type = value_type (val); /* Hack: remove (char *) for char strings. Their - type is indicated by the quoted string anyway. - (Don't use c_textual_element_type here; quoted strings - are always exactly (char *), (wchar_t *), or the like. */ + type is indicated by the quoted string anyway. + (Don't use c_textual_element_type here; quoted strings + are always exactly (char *), (wchar_t *), or the like. */ if (original_type->code () == TYPE_CODE_PTR && original_type->name () == NULL && TYPE_TARGET_TYPE (original_type)->name () != NULL |