From 28435a4f3664401249e27c20b6d9632cd427cef7 Mon Sep 17 00:00:00 2001 From: rdivacky Date: Tue, 22 Sep 2009 16:28:07 +0000 Subject: Change the command argument to ioctl routines to u_long to avoid truncating the command to 32bit on 64bit archs where int is 32bit (ie. amd64). Approved by: scottl Approved by: ed (mentor, implicit) --- sys/dev/twe/twe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/twe/twe.c') diff --git a/sys/dev/twe/twe.c b/sys/dev/twe/twe.c index 59b5027..90dfa2e 100644 --- a/sys/dev/twe/twe.c +++ b/sys/dev/twe/twe.c @@ -487,7 +487,7 @@ twe_dump_blocks(struct twe_softc *sc, int unit, u_int32_t lba, void *data, int n * Handle controller-specific control operations. */ int -twe_ioctl(struct twe_softc *sc, int ioctlcmd, void *addr) +twe_ioctl(struct twe_softc *sc, u_long ioctlcmd, void *addr) { struct twe_usercommand *tu = (struct twe_usercommand *)addr; struct twe_paramcommand *tp = (struct twe_paramcommand *)addr; -- cgit v1.1