aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/fifofs
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-10-16 08:04:11 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-10-16 08:04:11 +0000
commitbc9d8a9a373dd93902e6e521deb34270e04fe01f (patch)
tree1ef597e1775af8008706f6276defdaa314700892 /sys/fs/fifofs
parentfcf549422d95fcbe6d5389503c0bb971031086cd (diff)
downloadsrc-bc9d8a9a373dd93902e6e521deb34270e04fe01f.tar.gz
src-bc9d8a9a373dd93902e6e521deb34270e04fe01f.zip
Fix comments and one resulting code confusion about the type of the
"command" argument to VOP_IOCTL. Spotted by: FlexeLint.
Notes
Notes: svn path=/head/; revision=105212
Diffstat (limited to 'sys/fs/fifofs')
-rw-r--r--sys/fs/fifofs/fifo_vnops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c
index 7292e563f6ac..53538efb6a33 100644
--- a/sys/fs/fifofs/fifo_vnops.c
+++ b/sys/fs/fifofs/fifo_vnops.c
@@ -334,7 +334,7 @@ static int
fifo_ioctl(ap)
struct vop_ioctl_args /* {
struct vnode *a_vp;
- int a_command;
+ u_long a_command;
caddr_t a_data;
int a_fflag;
struct ucred *a_cred;