diff options
author | marcel <marcel@FreeBSD.org> | 2006-04-03 20:55:52 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2006-04-03 20:55:52 +0000 |
commit | a1c5f48a6d0b711a37d0cf5569b3d031960ab88b (patch) | |
tree | 68be1d94d87b4d3257a8617330abe894791e35b7 /sys/kern/subr_kdb.c | |
parent | f7026f8ce06e3716ee307d85e6e8823a322aedfb (diff) | |
download | FreeBSD-src-a1c5f48a6d0b711a37d0cf5569b3d031960ab88b.zip FreeBSD-src-a1c5f48a6d0b711a37d0cf5569b3d031960ab88b.tar.gz |
In kdb_trap(), change the type of the local variable 'intr' from int
to register_t, as intr_disable() returns the latter and register_t
may be wider than int.
Pointed out by: marius@
Diffstat (limited to 'sys/kern/subr_kdb.c')
-rw-r--r-- | sys/kern/subr_kdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/subr_kdb.c b/sys/kern/subr_kdb.c index c48f33e..b386604 100644 --- a/sys/kern/subr_kdb.c +++ b/sys/kern/subr_kdb.c @@ -453,10 +453,11 @@ kdb_thr_select(struct thread *thr) int kdb_trap(int type, int code, struct trapframe *tf) { + register_t intr; #ifdef SMP int did_stop_cpus; #endif - int handled, intr; + int handled; if (kdb_dbbe == NULL || kdb_dbbe->dbbe_trap == NULL) return (0); |