One spot in windows-nat.c uses %ld to print the TID, but all other
spots use %x, as does the infrun logging.  This makes it unnecessarily
hard to tell which other log messages correspond to this one.  This
patch changes the one outlier to use %x.
gdb/ChangeLog
2019-10-15  Tom Tromey  <tromey@adacore.com>
	* windows-nat.c (windows_nat_target::resume): Use %x when logging
	TID.
Change-Id: Ic66efeb8a7ec08e7fb007320318f51acbf976734
+2019-10-15  Tom Tromey  <tromey@adacore.com>
+
+       * windows-nat.c (windows_nat_target::resume): Use %x when logging
+       TID.
+
 2019-10-15  Tom Tromey  <tromey@adacore.com>
 
        * windows-nat.c (windows_nat_target::fetch_registers)
 
 
   last_sig = GDB_SIGNAL_0;
 
-  DEBUG_EXEC (("gdb: windows_resume (pid=%d, tid=%ld, step=%d, sig=%d);\n",
-              ptid.pid (), ptid.tid (), step, sig));
+  DEBUG_EXEC (("gdb: windows_resume (pid=%d, tid=0x%x, step=%d, sig=%d);\n",
+              ptid.pid (), (unsigned) ptid.tid (), step, sig));
 
   /* Get context for currently selected thread.  */
   th = thread_rec (inferior_ptid.tid (), FALSE);