fix type error (arch-dependent) in new aio code
authorRich Felker <dalias@aerifal.cx>
Sat, 14 Feb 2015 19:05:35 +0000 (14:05 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 14 Feb 2015 19:05:35 +0000 (14:05 -0500)
commitfd850de7524d8b62cd1d340417b665ed9427adae
treeb8923e6311c4405a6ca589eb9415a38a2b84b387
parent7c5f0a5212127b70486159af80e24fd96262ec88
fix type error (arch-dependent) in new aio code

a_store is only valid for int, but ssize_t may be defined as long or
another type. since there is no valid way for another thread to acess
the return value without first checking the error/completion status of
the aiocb anyway, an atomic store is not necessary.
src/aio/aio.c