diff options
| author | Evgeny Ermakov <22344340+unspecd@users.noreply.github.com> | 2021-01-03 00:36:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-02 21:36:43 -0800 |
| commit | d5814d58496ff1fbbb2e6727ff8bffe78204223c (patch) | |
| tree | 01eb348dfbc685a3736ad2647bf31a09903fd27e /src/core/dialer.c | |
| parent | 6d5fcbbf4bac0639d531577786b158c24b60d9c6 (diff) | |
| download | nng-d5814d58496ff1fbbb2e6727ff8bffe78204223c.tar.gz nng-d5814d58496ff1fbbb2e6727ff8bffe78204223c.tar.bz2 nng-d5814d58496ff1fbbb2e6727ff8bffe78204223c.zip | |
Fix compilation warnings (#1397)
Diffstat (limited to 'src/core/dialer.c')
| -rw-r--r-- | src/core/dialer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/dialer.c b/src/core/dialer.c index 1f9a5e58..00d2c163 100644 --- a/src/core/dialer.c +++ b/src/core/dialer.c @@ -219,6 +219,9 @@ nni_dialer_bump_error(nni_dialer *d, int err) nni_stat_inc(&d->st_other, 1); break; } +#else + NNI_ARG_UNUSED(d); + NNI_ARG_UNUSED(err); #endif } |
