]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* gnu-nat.c (proc_string): Use capital T for "Thread".
authorPierre Muller <muller@sourceware.org>
Fri, 20 Jun 2008 06:51:34 +0000 (06:51 +0000)
committerPierre Muller <muller@sourceware.org>
Fri, 20 Jun 2008 06:51:34 +0000 (06:51 +0000)
gdb/ChangeLog
gdb/gnu-nat.c

index a141b7852c87a16373bc83f95ac20b87d6400d8a..8dae7cc91e532408ed077be030eb8a5c45c4cc49 100644 (file)
@@ -1,3 +1,7 @@
+2008-12-19  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * gnu-nat.c (proc_string): Use capital T for "Thread".
 2008-12-19  Pierre Muller  <muller@ics.u-strasbg.fr>
 
        * win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
index 970f663c11948ba77d4e3cf53bb86b2d9326b6c0..5f9a405dd37d32f9870ddcf8c847ba92226b1a3a 100644 (file)
@@ -2556,7 +2556,7 @@ proc_string (struct proc *proc)
   if (proc_is_task (proc))
     sprintf (tid_str, "process %d", proc->inf->pid);
   else
-    sprintf (tid_str, "thread %d.%d",
+    sprintf (tid_str, "Thread %d.%d",
             proc->inf->pid, pid_to_thread_id (MERGEPID (proc->tid, 0)));
   return tid_str;
 }