aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Ermakov <22344340+unspecd@users.noreply.github.com>2020-12-20 16:04:30 -0600
committerGitHub <noreply@github.com>2020-12-20 14:04:30 -0800
commitb33fdd1f21830ae193b597b7039a44b17c97ffec (patch)
tree7383872d399a00140eb372752f2066fdca1b7a48 /src
parentd2cbe5ad7e40c5fbe6215a996d4abce13de87284 (diff)
downloadnng-b33fdd1f21830ae193b597b7039a44b17c97ffec.tar.gz
nng-b33fdd1f21830ae193b597b7039a44b17c97ffec.tar.bz2
nng-b33fdd1f21830ae193b597b7039a44b17c97ffec.zip
Fix compilation error (#1375)
Diffstat (limited to 'src')
-rw-r--r--src/compat/nanomsg/nn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compat/nanomsg/nn.c b/src/compat/nanomsg/nn.c
index 22990996..b6af8233 100644
--- a/src/compat/nanomsg/nn.c
+++ b/src/compat/nanomsg/nn.c
@@ -1300,8 +1300,8 @@ nn_poll(struct nn_pollfd *fds, int nfds, int timeout)
return (rv);
#else // NNG_PLATFORM_WINDOWS or NNG_PLATFORM_POSIX
- NNI_ARG_UNUSED(pfds);
- NNI_ARG_UNUSED(npfd);
+ NNI_ARG_UNUSED(fds);
+ NNI_ARG_UNUSED(nfds);
NNI_ARG_UNUSED(timeout);
errno = ENOTSUP;
return (-1);