aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2009-01-23 13:23:17 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2009-01-23 13:23:17 +0000
commite588eeb1dc80089dd71e522f3d34ba84c38fbd76 (patch)
tree43c76964f3089625515d8b7f753127821fda42ae
parentcb30dc5538cbeb64714189635bd4e2de55b6e9b2 (diff)
downloadsrc-e588eeb1dc80089dd71e522f3d34ba84c38fbd76.tar.gz
src-e588eeb1dc80089dd71e522f3d34ba84c38fbd76.zip
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
Notes
Notes: svn path=/head/; revision=187631
-rw-r--r--sys/kern/vfs_aio.c2
1 files changed, 1 insertions, 1 deletions
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;