* fhandler_dsp.cc (ioctl): Use _ioctl for recursive call.
This commit is contained in:
@ -1303,7 +1303,7 @@ fhandler_dev_dsp::_ioctl (unsigned int cmd, void *buf)
|
||||
CASE (SNDCTL_DSP_STEREO)
|
||||
{
|
||||
int nChannels = *intbuf + 1;
|
||||
int res = ioctl (SNDCTL_DSP_CHANNELS, &nChannels);
|
||||
int res = _ioctl (SNDCTL_DSP_CHANNELS, &nChannels);
|
||||
*intbuf = nChannels - 1;
|
||||
return res;
|
||||
}
|
||||
|
Reference in New Issue
Block a user