* fhandler_dsp.cc (fhandler_dev_dsp::ioctl): Actually pass ioctl argument to

_ioctl.
This commit is contained in:
Christopher Faylor
2014-03-20 02:23:52 +00:00
parent 71f36ed3c2
commit 364f6915f8
2 changed files with 8 additions and 3 deletions

View File

@ -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