Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Feb 2010 19:52:51 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r203804 - head/sys/ddb
Message-ID:  <201002121952.o1CJqpt2013352@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002121952.o1CJqpt2013352>