* win32-nat.c (win32_pid_to_str): Use capital T for "Thread".

This commit is contained in:
Pierre Muller 2008-06-19 06:36:45 +00:00
parent dad28c3cb1
commit 17526a8c50
3 changed files with 6 additions and 2 deletions

View 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

View 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;
}

View 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;
}