Browse Source

Fix formatting buglet in python.c

python.c has a split string that is missing a space.  There's also a
stray backslash in this code.

Reviewed-By: Tom de Vries <tdevries@suse.de>
master
Tom Tromey 3 years ago
parent
commit
8ee6f71b1a
  1. 2
      gdb/python/python.c

2
gdb/python/python.c

@ -1601,7 +1601,7 @@ gdbpy_print_stack (void)
/* An error occurred computing the string representation of the
error message. */
gdb_printf (gdb_stderr,
_("Error occurred computing Python error" \
_("Error occurred computing Python error "
"message.\n"));
PyErr_Clear ();
}

Loading…
Cancel
Save