diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/python/py-prettyprint.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d6eb28b..cae0cd6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2011-03-31 Tom Tromey <tromey@redhat.com> + * python/py-prettyprint.c (print_stack_unless_memory_error): Add + missing ">" to message. + +2011-03-31 Tom Tromey <tromey@redhat.com> + * varobj.c (instantiate_pretty_printer): Remove duplicate 'return'. diff --git a/gdb/python/py-prettyprint.c b/gdb/python/py-prettyprint.c index 3325795..a657432 100644 --- a/gdb/python/py-prettyprint.c +++ b/gdb/python/py-prettyprint.c @@ -288,7 +288,7 @@ print_stack_unless_memory_error (struct ui_file *stream) make_cleanup (xfree, msg); if (msg == NULL || *msg == '\0') - fprintf_filtered (stream, _("<error reading variable")); + fprintf_filtered (stream, _("<error reading variable>")); else fprintf_filtered (stream, _("<error reading variable: %s>"), msg); |