]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix formatting buglet in python.c
authorTom Tromey <tromey@adacore.com>
Thu, 15 Feb 2024 21:02:22 +0000 (14:02 -0700)
committerTom Tromey <tromey@adacore.com>
Tue, 27 Feb 2024 16:46:31 +0000 (09:46 -0700)
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>
gdb/python/python.c

index 7b0997c8d5241f3c3e46f36c98d5ff86d9348410..b2e8f244f852e267fc26f44f6689e3eaba8841d4 100644 (file)
@@ -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 ();
            }