Fix incorrect string_printf use in utils.c
authorTom Tromey <tom@tromey.com>
Tue, 3 Oct 2017 14:26:16 +0000 (08:26 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 3 Oct 2017 14:26:16 +0000 (08:26 -0600)
I made a mistake earlier and used string_printf where I should have used
string_vprintf.

I'm checking this in as obvious.

2017-10-03  Tom Tromey  <tom@tromey.com>

* utils.c (internal_vproblem): Use string_vprintf.

gdb/ChangeLog
gdb/utils.c

index 439df4a..6e135f2 100644 (file)
@@ -1,5 +1,9 @@
 2017-10-03  Tom Tromey  <tom@tromey.com>
 
+       * utils.c (internal_vproblem): Use string_vprintf.
+
+2017-10-03  Tom Tromey  <tom@tromey.com>
+
        * printcmd.c (info_symbol_command): Use std::string.
 
 2017-10-03  Tom Tromey  <tom@tromey.com>
index 03b66c4..118fcc3 100644 (file)
@@ -425,7 +425,7 @@ internal_vproblem (struct internal_problem *problem,
      style similar to a compiler error message.  Include extra detail
      so that the user knows that they are living on the edge.  */
   {
-    std::string msg = string_printf (fmt, ap);
+    std::string msg = string_vprintf (fmt, ap);
     reason = string_printf ("%s:%d: %s: %s\n"
                            "A problem internal to GDB has been detected,\n"
                            "further debugging may prove unreliable.",