summaryrefslogtreecommitdiff
path: root/gdb/win32-nat.c
diff options
context:
space:
mode:
authorPierre Muller <muller@ics.u-strasbg.fr>2008-06-19 06:36:45 +0000
committerPierre Muller <muller@ics.u-strasbg.fr>2008-06-19 06:36:45 +0000
commitefbb49b576c19fef6efb4e118da842bd34d009f5 (patch)
tree3f8ee3e205ce117e21de91be9188751fc53f8215 /gdb/win32-nat.c
parentaab3c50d87f8489876f0afb58c39788601e6fd45 (diff)
downloadgdb-efbb49b576c19fef6efb4e118da842bd34d009f5.tar.gz
* win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r--gdb/win32-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c
index 2c6d9550bf7..1478a96f2aa 100644
--- a/gdb/win32-nat.c
+++ b/gdb/win32-nat.c
@@ -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;
}