From: Tom Tromey Date: Thu, 31 Mar 2011 16:25:41 +0000 (+0000) Subject: * python/py-prettyprint.c (print_stack_unless_memory_error): Add X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1dae3efc56ac9f71907df4a22a6148eb2d51a80f;p=binutils-gdb.git * python/py-prettyprint.c (print_stack_unless_memory_error): Add missing ">" to message. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d6eb28b7c3b..cae0cd6c0a1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-03-31 Tom Tromey + + * python/py-prettyprint.c (print_stack_unless_memory_error): Add + missing ">" to message. + 2011-03-31 Tom Tromey * varobj.c (instantiate_pretty_printer): Remove duplicate diff --git a/gdb/python/py-prettyprint.c b/gdb/python/py-prettyprint.c index 332579507ad..a657432504a 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, _("")); else fprintf_filtered (stream, _(""), msg);