diff options
author | Pierre Muller <muller@sourceware.org> | 2008-06-19 06:36:45 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2008-06-19 06:36:45 +0000 |
commit | 17526a8c50f35e9a89f2d573f0dd529926118f4f (patch) | |
tree | 9bb5c89aae940a4f91cc1add4e16ee67461028cf /gdb | |
parent | dad28c3cb18d9203ba347e657d714612195dbab3 (diff) | |
download | gdb-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')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/win32-nat.c | 2 | ||||
-rw-r--r-- | gdb/windows-nat.c | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 58391b8..a141b78 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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 diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index 2c6d955..1478a96 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; } 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; } |