* fhandler_dsp.cc (fhandler_dev_dsp::ioctl): Actually pass ioctl argument to
_ioctl.
This commit is contained in:
@ -1018,9 +1018,9 @@ fhandler_dev_dsp::read (void *ptr, size_t& len)
|
||||
}
|
||||
|
||||
int
|
||||
fhandler_dev_dsp::ioctl (unsigned int cmd, void *)
|
||||
fhandler_dev_dsp::ioctl (unsigned int cmd, void *buf)
|
||||
{
|
||||
return base ()->_ioctl (cmd, NULL);
|
||||
return base ()->_ioctl (cmd, buf);
|
||||
}
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user