From: drow Date: Tue, 17 Oct 2006 15:43:50 +0000 (+0000) Subject: * remote.c (remote_pid_to_str): Capitalize "Thread". X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=93fb836b2cbd29edd7938952676bb74bf876abf4;p=pf3gnuchains%2Fpf3gnuchains3x.git * remote.c (remote_pid_to_str): Capitalize "Thread". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f16b7b6b26..0972ca6b4b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-10-17 Daniel Jacobowitz + + * remote.c (remote_pid_to_str): Capitalize "Thread". + 2006-10-15 Daniel Jacobowitz PR remote/2158 diff --git a/gdb/remote.c b/gdb/remote.c index d8d42f6186..cf872b1a17 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; }