fix inconsistent signature for aio_error
authorRich Felker <dalias@aerifal.cx>
Wed, 14 Sep 2011 13:36:38 +0000 (09:36 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 14 Sep 2011 13:36:38 +0000 (09:36 -0400)
src/aio/aio_error.c

index 169a9a3063b265e1e1d09ba05eec1c5217b8ad42..a780fd33d3c9eca3e169c67c969bc91c10130cc9 100644 (file)
@@ -1,6 +1,6 @@
 #include <aio.h>
 
-int aio_error(struct aiocb *cb)
+int aio_error(const struct aiocb *cb)
 {
        return cb->__err;
 }