diff options
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r-- | gdb/c-lang.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c index 109d4a1..898ae8d 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -951,7 +951,7 @@ evaluate_subexp_c (struct type *expect_type, struct expression *exp, if ((dest_type & C_CHAR) != 0) result = allocate_value (type); else - result = value_typed_string ("", 0, type); + result = value_cstring ("", 0, type); do_cleanups (cleanup); return result; } @@ -971,9 +971,9 @@ evaluate_subexp_c (struct type *expect_type, struct expression *exp, /* Write the terminating character. */ for (i = 0; i < TYPE_LENGTH (type); ++i) obstack_1grow (&output, 0); - result = value_typed_string (obstack_base (&output), - obstack_object_size (&output), - type); + result = value_cstring (obstack_base (&output), + obstack_object_size (&output), + type); } do_cleanups (cleanup); return result; |