From ba6e3a95cb74438a2ee2535fb3ddabcdb2c4babb Mon Sep 17 00:00:00 2001 From: rpaulo Date: Fri, 12 Feb 2010 19:52:51 +0000 Subject: Add a space before printing 'thread pid ...' to match the space before ']'. --- sys/ddb/db_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/ddb') diff --git a/sys/ddb/db_thread.c b/sys/ddb/db_thread.c index e127eea..bf59f68 100644 --- a/sys/ddb/db_thread.c +++ b/sys/ddb/db_thread.c @@ -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 -- cgit v1.1