diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/subr_kdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_kdb.c b/sys/kern/subr_kdb.c index 121dc20e8b19..df7a9ef05741 100644 --- a/sys/kern/subr_kdb.c +++ b/sys/kern/subr_kdb.c @@ -513,12 +513,12 @@ kdb_reenter(void) struct pcb * kdb_thr_ctx(struct thread *thr) -{ +{ #if defined(SMP) && defined(KDB_STOPPEDPCB) struct pcpu *pc; #endif - - if (thr == curthread) + + if (thr == curthread) return (&kdb_pcb); #if defined(SMP) && defined(KDB_STOPPEDPCB) |