diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2010-02-12 19:52:51 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2010-02-12 19:52:51 +0000 |
commit | ba6e3a95cb74438a2ee2535fb3ddabcdb2c4babb (patch) | |
tree | d155b2cd008a71afe4b09bacc489d7d68864132c /sys/ddb | |
parent | b7ae6c55592057f4c5666982f689bf29094fe780 (diff) | |
download | FreeBSD-src-ba6e3a95cb74438a2ee2535fb3ddabcdb2c4babb.zip FreeBSD-src-ba6e3a95cb74438a2ee2535fb3ddabcdb2c4babb.tar.gz |
Add a space before printing 'thread pid ...' to match the space before
']'.
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |