diff options
| author | Garrett D'Amore <garrett@damore.org> | 2019-12-11 05:12:36 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2019-12-11 05:12:36 -0800 |
| commit | 5c0f08087429e7a89c97742e4a4b146688442a04 (patch) | |
| tree | b09dd481be3389d7321d3198a86efc9919216f3f /src/core | |
| parent | 52f5eb316f826c5c5be13c35f24f809d6d5efce4 (diff) | |
| download | nng-5c0f08087429e7a89c97742e4a4b146688442a04.tar.gz nng-5c0f08087429e7a89c97742e4a4b146688442a04.tar.bz2 nng-5c0f08087429e7a89c97742e4a4b146688442a04.zip | |
Address complaints found by lgtm.com.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/aio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/aio.c b/src/core/aio.c index ee3d10a5..28f61e50 100644 --- a/src/core/aio.c +++ b/src/core/aio.c @@ -546,11 +546,11 @@ nni_aio_expire_add(nni_aio *aio) } static void -nni_aio_expire_loop(void *arg) +nni_aio_expire_loop(void *notused) { nni_list *aios = &nni_aio_expire_aios; - NNI_ARG_UNUSED(arg); + NNI_ARG_UNUSED(notused); for (;;) { nni_aio_cancelfn fn; |
