aboutsummaryrefslogtreecommitdiff
path: root/gdb/windows-nat.c
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2008-06-19 06:36:45 +0000
committerPierre Muller <muller@sourceware.org>2008-06-19 06:36:45 +0000
commit17526a8c50f35e9a89f2d573f0dd529926118f4f (patch)
tree9bb5c89aae940a4f91cc1add4e16ee67461028cf /gdb/windows-nat.c
parentdad28c3cb18d9203ba347e657d714612195dbab3 (diff)
downloadgdb-17526a8c50f35e9a89f2d573f0dd529926118f4f.zip
gdb-17526a8c50f35e9a89f2d573f0dd529926118f4f.tar.gz
gdb-17526a8c50f35e9a89f2d573f0dd529926118f4f.tar.bz2
* win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r--gdb/windows-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 2c6d955..1478a96 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-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;
}