diff options
author | Tom Tromey <tromey@redhat.com> | 2011-03-31 16:25:41 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-03-31 16:25:41 +0000 |
commit | 1dae3efc56ac9f71907df4a22a6148eb2d51a80f (patch) | |
tree | 351a254d9bae1040d00220edf0d0764c4d203c04 /gdb/python | |
parent | f4f7ab05292e8d7c8e93c72ca9e8ac80cec44acd (diff) | |
download | gdb-1dae3efc56ac9f71907df4a22a6148eb2d51a80f.zip gdb-1dae3efc56ac9f71907df4a22a6148eb2d51a80f.tar.gz gdb-1dae3efc56ac9f71907df4a22a6148eb2d51a80f.tar.bz2 |
* python/py-prettyprint.c (print_stack_unless_memory_error): Add
missing ">" to message.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-prettyprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |