From: Tom Tromey Date: Thu, 15 Feb 2024 21:02:22 +0000 (-0700) Subject: Fix formatting buglet in python.c X-Git-Tag: gdb-15-branchpoint~859 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ee6f71b1a09f4077e22c840a16833518c56089a;p=thirdparty%2Fbinutils-gdb.git 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 --- diff --git a/gdb/python/python.c b/gdb/python/python.c index 7b0997c8d52..b2e8f244f85 100644 --- a/gdb/python/python.c +++ b/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 (); }