Author: rpaulo
Date: Fri Feb 12 19:52:51 2010
New Revision: 203804
URL: http://svn.freebsd.org/changeset/base/203804

Log:
  Add a space before printing 'thread pid ...' to match the space before
  ']'.

Modified:
  head/sys/ddb/db_thread.c

Modified: head/sys/ddb/db_thread.c
==============================================================================
--- head/sys/ddb/db_thread.c    Fri Feb 12 19:36:37 2010        (r203803)
+++ head/sys/ddb/db_thread.c    Fri Feb 12 19:52:51 2010        (r203804)
@@ -48,7 +48,7 @@ db_print_thread(void)
        pid = -1;
        if (kdb_thread->td_proc != NULL)
                pid = kdb_thread->td_proc->p_pid;
-       db_printf("[thread pid %d tid %ld ]\n", pid, (long)kdb_thread->td_tid);
+       db_printf("[ thread pid %d tid %ld ]\n", pid, (long)kdb_thread->td_tid);
 }
 
 void
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to