* remote.c (remote_pid_to_str): Capitalize "Thread".
authorDaniel Jacobowitz <drow@false.org>
Tue, 17 Oct 2006 15:43:51 +0000 (15:43 +0000)
committerDaniel Jacobowitz <drow@false.org>
Tue, 17 Oct 2006 15:43:51 +0000 (15:43 +0000)
gdb/ChangeLog
gdb/remote.c

index f16b7b6b261005bb44f27e9f0723e62f3827ebca..0972ca6b4b3e52a8099f137f7f03da0b03af04e0 100644 (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
index d8d42f61865cc6606d335019bab284a3c246203e..cf872b1a173fe130d4469cfee86b77ecae374400 100644 (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;
 }
 
This page took 0.030366 seconds and 4 git commands to generate.