svn commit: r274058 - stable/8/sys/compat/linux
Alexander Motin
mav at FreeBSD.org
Mon Nov 3 19:20:11 UTC 2014
Author: mav
Date: Mon Nov 3 19:20:10 2014
New Revision: 274058
URL: https://svnweb.freebsd.org/changeset/base/274058
Log:
Fix build breakage of r274056.
Modified:
stable/8/sys/compat/linux/linux_ioctl.c
Modified: stable/8/sys/compat/linux/linux_ioctl.c
==============================================================================
--- stable/8/sys/compat/linux/linux_ioctl.c Mon Nov 3 19:16:25 2014 (r274057)
+++ stable/8/sys/compat/linux/linux_ioctl.c Mon Nov 3 19:20:10 2014 (r274058)
@@ -1746,7 +1746,7 @@ linux_ioctl_sound(struct thread *td, str
switch ((args->cmd >> 16) & 0x1fff) {
case 0x005c: { /* SOUND_MIXER_INFO */
args->cmd = SOUND_MIXER_INFO;
- return (sys_ioctl(td, (struct ioctl_args *)args));
+ return (ioctl(td, (struct ioctl_args *)args));
}
case 0x0030: { /* SOUND_OLD_MIXER_INFO */
struct linux_old_mixer_info info;
More information about the svn-src-all
mailing list