summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-06 08:11:03 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-06 08:11:03 -0600
commit0edf94158596b35cd4fedfc9bcccdad9de49820e (patch)
tree55943fd94fc11cd22adc86fe3fa1e6f3e138a425
parent181779ecfe350b9ad527901083b23fbb52449d21 (diff)
downloadnuttx-0edf94158596b35cd4fedfc9bcccdad9de49820e.tar.gz
nuttx-0edf94158596b35cd4fedfc9bcccdad9de49820e.tar.bz2
nuttx-0edf94158596b35cd4fedfc9bcccdad9de49820e.zip
Fix a typo
-rw-r--r--nuttx/libc/aio/lio_listio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/aio/lio_listio.c b/nuttx/libc/aio/lio_listio.c
index 45bb87bcf..d4741374a 100644
--- a/nuttx/libc/aio/lio_listio.c
+++ b/nuttx/libc/aio/lio_listio.c
@@ -208,7 +208,7 @@ static void lio_sighandler(int signo, siginfo_t *info, void *ucontext)
(void)sigqueue(sighand->pid, sighand->sig->sigev_signo,
sighand->sig->sigev_value);
#else
- (void)sigqueue(sighand->aio_pid, sighand->sig.sigev_sign,
+ (void)sigqueue(sighand->pid, sighand->sig->sigev_signo,
sighand->sig->sigev_value.sival_ptr);
#endif
}