* win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
authorPierre Muller <muller@sourceware.org>
Thu, 19 Jun 2008 06:36:45 +0000 (06:36 +0000)
committerPierre Muller <muller@sourceware.org>
Thu, 19 Jun 2008 06:36:45 +0000 (06:36 +0000)
gdb/ChangeLog
gdb/win32-nat.c
gdb/windows-nat.c

index 58391b8..a141b78 100644 (file)
@@ -1,3 +1,7 @@
+2008-12-19  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
 2008-06-18  Joel Brobecker  <brobecker@adacore.com>
 
         * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
index 2c6d955..1478a96 100644 (file)
@@ -2011,7 +2011,7 @@ win32_pid_to_str (ptid_t ptid)
   if ((DWORD) pid == current_event.dwProcessId)
     sprintf (buf, "process %d", pid);
   else
-    sprintf (buf, "thread %ld.0x%x", current_event.dwProcessId, pid);
+    sprintf (buf, "Thread %ld.0x%x", current_event.dwProcessId, pid);
   return buf;
 }
 
index 2c6d955..1478a96 100644 (file)
@@ -2011,7 +2011,7 @@ win32_pid_to_str (ptid_t ptid)
   if ((DWORD) pid == current_event.dwProcessId)
     sprintf (buf, "process %d", pid);
   else
-    sprintf (buf, "thread %ld.0x%x", current_event.dwProcessId, pid);
+    sprintf (buf, "Thread %ld.0x%x", current_event.dwProcessId, pid);
   return buf;
 }