svn commit: r203804 - head/sys/ddb

Rui Paulo rpaulo at FreeBSD.org
Fri Feb 12 19:52:51 UTC 2010


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


More information about the svn-src-all mailing list