> On 06/11/2013 11:21 AM, Joel Brobecker wrote: > > DWORD err = GetLastError (); > > - warning (_("SuspendThread failed. (winerr %u)"), > > - (unsigned) err); > > + warning (_("SuspendThread (tid=0x%x) failed." > > + " (winerr %d)"), > > This reverted part of a previous change (winerr %u -> winerr %d). Gasp!!! Thanks for spotting that - I did do a word-by-word diff with git, and yet missed it :-(. > > + (unsigned) id, (unsigned) err); > > return NULL; Fixed thusly. Re-checked with word-by-word diff, and hopefully OK, this time. gdb/ChangeLog: * windows-nat.c (thread_rec): Revert format used to print error code returned by SuspendThread from %d back to %u. Thanks again, -- Joel