From 13cd969552409e05c941829f2aabb15e2f4d9a1f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 13 Sep 2011 21:09:35 -0400 Subject: fix various errors in function signatures/prototypes found by nsz --- src/aio/aio_suspend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/aio/aio_suspend.c') diff --git a/src/aio/aio_suspend.c b/src/aio/aio_suspend.c index cb2539e9..39a1d3a2 100644 --- a/src/aio/aio_suspend.c +++ b/src/aio/aio_suspend.c @@ -16,7 +16,7 @@ void __aio_wake(void) __wake(&seq, -1, 1); } -int aio_suspend(struct aiocb *const cbs[], int cnt, const struct timespec *ts) +int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec *ts) { int i, last, first=1, ret=0; struct timespec at; -- cgit v1.2.1