diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/remote.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f16b7b6..0972ca6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-10-17 Daniel Jacobowitz <dan@codesourcery.com> + + * remote.c (remote_pid_to_str): Capitalize "Thread". + 2006-10-15 Daniel Jacobowitz <dan@codesourcery.com> PR remote/2158 diff --git a/gdb/remote.c b/gdb/remote.c index d8d42f6..cf872b1 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -5834,7 +5834,7 @@ remote_pid_to_str (ptid_t ptid) { static char buf[32]; - xsnprintf (buf, sizeof buf, "thread %d", ptid_get_pid (ptid)); + xsnprintf (buf, sizeof buf, "Thread %d", ptid_get_pid (ptid)); return buf; } |