svn commit: r187631 - head/sys/kern
John Baldwin
jhb at FreeBSD.org
Fri Jan 23 05:23:18 PST 2009
Author: jhb
Date: Fri Jan 23 13:23:17 2009
New Revision: 187631
URL: http://svn.freebsd.org/changeset/base/187631
Log:
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
Modified:
head/sys/kern/vfs_aio.c
Modified: head/sys/kern/vfs_aio.c
==============================================================================
--- head/sys/kern/vfs_aio.c Fri Jan 23 12:01:24 2009 (r187630)
+++ head/sys/kern/vfs_aio.c Fri Jan 23 13:23:17 2009 (r187631)
@@ -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;
More information about the svn-src-all
mailing list