svn commit: r227107 - stable/7/sys/dev/sound/pcm
Andriy Gapon
avg at FreeBSD.org
Sat Nov 5 11:18:47 UTC 2011
Author: avg
Date: Sat Nov 5 11:18:46 2011
New Revision: 227107
URL: http://svn.freebsd.org/changeset/base/227107
Log:
MFC r225505: dsp_ioctl: fix type of variable used to store ioctl request
PR: kern/156433
Modified:
stable/7/sys/dev/sound/pcm/dsp.c
Directory Properties:
stable/7/sys/ (props changed)
stable/7/sys/cddl/contrib/opensolaris/ (props changed)
stable/7/sys/contrib/dev/acpica/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
Modified: stable/7/sys/dev/sound/pcm/dsp.c
==============================================================================
--- stable/7/sys/dev/sound/pcm/dsp.c Sat Nov 5 11:04:25 2011 (r227106)
+++ stable/7/sys/dev/sound/pcm/dsp.c Sat Nov 5 11:18:46 2011 (r227107)
@@ -778,7 +778,8 @@ dsp_ioctl(struct cdev *i_dev, u_long cmd
{
struct pcm_channel *chn, *rdch, *wrch;
struct snddev_info *d;
- int *arg_i, ret, kill, tmp, xcmd;
+ u_long xcmd;
+ int *arg_i, ret, kill, tmp;
d = dsp_get_info(i_dev);
if (!DSP_REGISTERED(d, i_dev))
More information about the svn-src-stable-7
mailing list