--- i386/i386at/pic_isa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/i386/i386at/pic_isa.c b/i386/i386at/pic_isa.c index b0415c24..1e5ac103 100644 --- a/i386/i386at/pic_isa.c +++ b/i386/i386at/pic_isa.c @@ -33,8 +33,8 @@ /* These interrupts are always present */ -void (*ivect[NINTR])() = { - /* 00 */ hardclock, /* always */ +interrupt_handler_fn ivect[NINTR] = { + /* 00 */ (interrupt_handler_fn)hardclock, /* always */ /* 01 */ kdintr, /* kdintr, ... */ /* 02 */ intnull, /* 03 */ intnull, /* lnpoll, comintr, ... */ -- 2.37.2