summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/sound/soundcard.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/i386/isa/sound/soundcard.c')
-rw-r--r--sys/i386/isa/sound/soundcard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/sound/soundcard.c b/sys/i386/isa/sound/soundcard.c
index 4988e06..1089e87 100644
--- a/sys/i386/isa/sound/soundcard.c
+++ b/sys/i386/isa/sound/soundcard.c
@@ -491,7 +491,7 @@ request_sound_timer (int count)
int tmp = count;
if (count < 0)
- timeout (sequencer_timer, 0, -count);
+ timeout ((timeout_func_t)sequencer_timer, 0, -count);
else
{
@@ -505,7 +505,7 @@ request_sound_timer (int count)
if (!count)
count = 1;
- timeout (sequencer_timer, 0, count);
+ timeout ((timeout_func_t)sequencer_timer, 0, count);
}
timer_running = 1;
}
OpenPOWER on IntegriCloud