diff options
author | scottl <scottl@FreeBSD.org> | 2006-04-15 18:04:04 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2006-04-15 18:04:04 +0000 |
commit | 333b9af7b9dbd88ab8d7681e846729616ee11a96 (patch) | |
tree | ad745ca313fc3771a1812e9df1b563e1fa6e4916 /sys | |
parent | ca4a49d5e9ad0dea2f390e4d75d8220f8448ee44 (diff) | |
download | FreeBSD-src-333b9af7b9dbd88ab8d7681e846729616ee11a96.zip FreeBSD-src-333b9af7b9dbd88ab8d7681e846729616ee11a96.tar.gz |
Take a stab at making this compile.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/kern_intr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c index b62d5b0..edd80ef 100644 --- a/sys/kern/kern_intr.c +++ b/sys/kern/kern_intr.c @@ -310,7 +310,7 @@ ithread_destroy(struct intr_thread *ithread) { struct thread *td; - CTR2(KTR_INTR, "%s: killing %s", __func__, ithread->it_name); + CTR2(KTR_INTR, "%s: killing %s", __func__, ithread->it_thread->td_name); td = ithread->it_thread; mtx_lock_spin(&sched_lock); ithread->it_flags |= IT_DEAD; |