* 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 a141b78..8dae7cc 100644 (file)
@@ -1,5 +1,9 @@
 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".
  
 2008-06-18  Joel Brobecker  <brobecker@adacore.com>
index 970f663..5f9a405 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;
 }