From b0aa67c40e38a89b7675eeb07c8ce354b811f1e4 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Fri, 2 May 2014 15:14:17 +0000 Subject: * fhandler_dsp.cc (ioctl): Use _ioctl for recursive call. --- winsup/cygwin/fhandler_dsp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/fhandler_dsp.cc') diff --git a/winsup/cygwin/fhandler_dsp.cc b/winsup/cygwin/fhandler_dsp.cc index af6c2ea07..b5eaba7be 100644 --- a/winsup/cygwin/fhandler_dsp.cc +++ b/winsup/cygwin/fhandler_dsp.cc @@ -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; } -- cgit v1.2.3