* python/py-prettyprint.c (print_stack_unless_memory_error): Add
authorTom Tromey <tromey@redhat.com>
Thu, 31 Mar 2011 16:25:41 +0000 (16:25 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 31 Mar 2011 16:25:41 +0000 (16:25 +0000)
missing ">" to message.

gdb/ChangeLog
gdb/python/py-prettyprint.c

index d6eb28b7c3b59ba4e9f1708e5d1838ace8ecb8f7..cae0cd6c0a1da37c35e539033146c027579174fd 100644 (file)
@@ -1,3 +1,8 @@
+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
index 332579507ad3b334b9262051d1bd818c0e51fed3..a657432504a668261de62a3d47da81e99a14f904 100644 (file)
@@ -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);
 
This page took 0.040826 seconds and 4 git commands to generate.