mirror of
https://github.com/opnsense/src.git
synced 2026-07-15 04:01:09 -04:00
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
This commit is contained in:
parent
e4505da615
commit
7a2aafc355
1 changed files with 2 additions and 1 deletions
|
|
@ -1062,7 +1062,8 @@ dsp_ioctl(struct cdev *i_dev, u_long cmd, caddr_t arg, int mode,
|
|||
{
|
||||
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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue