From: Rich Felker Date: Wed, 14 Sep 2011 13:36:38 +0000 (-0400) Subject: fix inconsistent signature for aio_error X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=7c131a310875fe4255b049b7e7394074d4104311 fix inconsistent signature for aio_error --- diff --git a/src/aio/aio_error.c b/src/aio/aio_error.c index 169a9a30..a780fd33 100644 --- a/src/aio/aio_error.c +++ b/src/aio/aio_error.c @@ -1,6 +1,6 @@ #include -int aio_error(struct aiocb *cb) +int aio_error(const struct aiocb *cb) { return cb->__err; }