From 688444459d4673ab1692122264d80692c6164b17 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 23 Oct 1995 12:05:24 +0000 Subject: [PATCH] Fix a missing arg to untimeout. --- sys/pccard/pcic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index a5df02a1e352..071c17496018 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -248,7 +248,7 @@ pcic_unload() int slot; struct pcic_slot *cp = pcic_slots; - untimeout(pcictimeout); + untimeout(pcictimeout,0); if (pcic_irq) { for (slot = 0; slot < PCIC_MAX_SLOTS; slot++, cp++) {