diff options
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r-- | gdb/c-lang.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c index fc01f08..8df2cec 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -1049,7 +1049,8 @@ evaluate_subexp_c (struct type *expect_type, struct expression *exp, LONGEST value; if (obstack_object_size (&output) != TYPE_LENGTH (type)) - error (_("Could not convert character constant to target character set")); + error (_("Could not convert character " + "constant to target character set")); value = unpack_long (type, obstack_base (&output)); result = value_from_longest (type, value); } |