diff options
-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; } |