diff options
author | 2012-07-12 13:03:34 +0000 | |
---|---|---|
committer | 2012-07-12 13:03:34 +0000 | |
commit | d70be453ffb406e97e1c8d0a1aa4175359c17547 (patch) | |
tree | f77db77d3404d9ad2caeb678db499dac826f0cdb /lib/libc | |
parent | perlify: $_ is subject (diff) | |
download | wireguard-openbsd-d70be453ffb406e97e1c8d0a1aa4175359c17547.tar.xz wireguard-openbsd-d70be453ffb406e97e1c8d0a1aa4175359c17547.zip |
unused variables
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/asr/gethostnamadr_async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/asr/gethostnamadr_async.c b/lib/libc/asr/gethostnamadr_async.c index a46741f8297..47fecca10da 100644 --- a/lib/libc/asr/gethostnamadr_async.c +++ b/lib/libc/asr/gethostnamadr_async.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gethostnamadr_async.c,v 1.4 2012/07/10 15:58:00 eric Exp $ */ +/* $OpenBSD: gethostnamadr_async.c,v 1.5 2012/07/12 13:03:34 eric Exp $ */ /* * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> * @@ -125,7 +125,7 @@ gethostbyaddr_async_ctx(const void *addr, socklen_t len, int af, static int gethostnamadr_async_run(struct async *as, struct async_res *ar) { - int i, n, r, type; + int r, type; FILE *f; char dname[MAXDNAME], *data; |