* 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 58391b82f7e6a98d38b6c47ba014ae48f10d6ed9..a141b7852c87a16373bc83f95ac20b87d6400d8a 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 2c6d9550bf71b4c094e480f4d69cedbc4ddbf4c1..1478a96f2aa1dd3c5da4440326d421b39a3a8d36 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 2c6d9550bf71b4c094e480f4d69cedbc4ddbf4c1..1478a96f2aa1dd3c5da4440326d421b39a3a8d36 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;
 }
 
This page took 0.027636 seconds and 4 git commands to generate.