From e588eeb1dc80089dd71e522f3d34ba84c38fbd76 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 23 Jan 2009 13:23:17 +0000 Subject: Use the correct type for the timeout parameter to the 32-bit compat version aio_waitcomplete(). Reminded by: bz Submitted by: jamie MFC after: 3 days --- sys/kern/vfs_aio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c index 14e980d0ef13..7cd077bb1898 100644 --- a/sys/kern/vfs_aio.c +++ b/sys/kern/vfs_aio.c @@ -2824,7 +2824,7 @@ int freebsd32_aio_waitcomplete(struct thread *td, struct freebsd32_aio_waitcomplete_args *uap) { - struct timespec ts32; + struct timespec32 ts32; struct timespec ts, *tsp; int error; -- cgit v1.2.3