diff options
-rw-r--r-- | src/utils/padsp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/padsp.c b/src/utils/padsp.c index 299033e4..b48af93c 100644 --- a/src/utils/padsp.c +++ b/src/utils/padsp.c @@ -2292,7 +2292,8 @@ static int dsp_ioctl(fd_info *i, unsigned long request, void*argp, int *_errno) break; default: - debug(DEBUG_LEVEL_NORMAL, __FILE__": unknown ioctl 0x%08lx\n", request); + /* Mixer ioctls are valid on /dev/dsp aswell */ + return mixer_ioctl(i, request, argp, _errno); inval: *_errno = EINVAL; |