Date: Mon, 12 Sep 2011 08:40:09 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: freebsd-multimedia@FreeBSD.org Subject: Re: kern/156433: commit references a PR Message-ID: <201109120840.p8C8e9sG068613@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/156433; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/156433: commit references a PR Date: Mon, 12 Sep 2011 08:38:35 +0000 (UTC) Author: avg Date: Mon Sep 12 08:38:21 2011 New Revision: 225505 URL: http://svn.freebsd.org/changeset/base/225505 Log: dsp_ioctl: fix type of variable used to store ioctl request PR: kern/156433 Submitted by: Grigori Goronzy <greg@chown.ath.cx> Reviewed by: hselasky Approved by: re (kib) MFC after: 1 week Modified: head/sys/dev/sound/pcm/dsp.c Modified: head/sys/dev/sound/pcm/dsp.c ============================================================================== --- head/sys/dev/sound/pcm/dsp.c Mon Sep 12 06:41:13 2011 (r225504) +++ head/sys/dev/sound/pcm/dsp.c Mon Sep 12 08:38:21 2011 (r225505) @@ -1062,7 +1062,8 @@ dsp_ioctl(struct cdev *i_dev, u_long cmd { struct pcm_channel *chn, *rdch, *wrch; struct snddev_info *d; - int *arg_i, ret, tmp, xcmd; + u_long xcmd; + int *arg_i, ret, tmp; d = dsp_get_info(i_dev); if (!DSP_REGISTERED(d, i_dev)) _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201109120840.p8C8e9sG068613>