aboutsummaryrefslogtreecommitdiff
path: root/src/nng.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-10-10 21:12:43 -0700
committerGarrett D'Amore <garrett@damore.org>2025-10-10 21:12:43 -0700
commit553ed74c7ae8a1bb79ade90ec8a3fab92a8a34a7 (patch)
tree6fbaad5777a34ef0c8a24cc60b135f6fe515dfb5 /src/nng.c
parentea65f9503c80c33fb236703a7e81747bcb94666b (diff)
downloadnng-553ed74c7ae8a1bb79ade90ec8a3fab92a8a34a7.tar.gz
nng-553ed74c7ae8a1bb79ade90ec8a3fab92a8a34a7.tar.bz2
nng-553ed74c7ae8a1bb79ade90ec8a3fab92a8a34a7.zip
nng_aio_finish should take nng_err rather than int
Diffstat (limited to 'src/nng.c')
-rw-r--r--src/nng.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nng.c b/src/nng.c
index 423ddb64..acbfd1b5 100644
--- a/src/nng.c
+++ b/src/nng.c
@@ -8,7 +8,6 @@
// found online at https://opensource.org/licenses/MIT.
//
-#include "nng/nng.h"
#include "core/nng_impl.h"
#include "core/platform.h"
#include "core/socket.h"
@@ -2061,7 +2060,7 @@ nng_aio_get_output(nng_aio *aio, unsigned index)
}
void
-nng_aio_finish(nng_aio *aio, int rv)
+nng_aio_finish(nng_aio *aio, nng_err rv)
{
// Preserve the count.
nni_aio_finish(aio, rv, nni_aio_count(aio));