[windows] Fix accidental change of %u -> %d in SuspendThread warning.
authorJoel Brobecker <brobecker@gnat.com>
Tue, 11 Jun 2013 11:01:46 +0000 (11:01 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Tue, 11 Jun 2013 11:01:46 +0000 (11:01 +0000)
While enhancing the warning printed in when SuspendThread fails,
I accidently changed the format used to print the error code
from %u to %d. This patch reverts it back.

gdb/ChangeLog:

        * windows-nat.c (thread_rec): Revert format used to print
        error code returned by SuspendThread from %d back to %u.

gdb/ChangeLog
gdb/windows-nat.c

index fc0508e..f8b9386 100644 (file)
@@ -1,5 +1,10 @@
 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
 
+       * windows-nat.c (thread_rec): Revert format used to print
+       error code returned by SuspendThread from %d back to %u.
+
+2013-06-11  Joel Brobecker  <brobecker@adacore.com>
+
        * windows-nat.c (windows_continue): Add "0x" prefix for thread
        ID in debug trace.
        (get_windows_debug_event): Likewise, for all debug traces.
index e0bb719..b30f425 100644 (file)
@@ -312,7 +312,7 @@ thread_rec (DWORD id, int get_context)
                  {
                    DWORD err = GetLastError ();
                    warning (_("SuspendThread (tid=0x%x) failed."
-                              " (winerr %d)"),
+                              " (winerr %u)"),
                             (unsigned) id, (unsigned) err);
                    return NULL;
                  }