* remote.c (remote_pid_to_str): Capitalize "Thread".

This commit is contained in:
Daniel Jacobowitz 2006-10-17 15:43:51 +00:00
parent bb224fc379
commit 32a5b2f1dd
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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;
}