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.
+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
{
DWORD err = GetLastError ();
warning (_("SuspendThread (tid=0x%x) failed."
- " (winerr %d)"),
+ " (winerr %u)"),
(unsigned) id, (unsigned) err);
return NULL;
}