diff options
author | stefanf <stefanf@FreeBSD.org> | 2014-10-26 17:56:58 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2014-10-26 17:56:58 +0000 |
commit | e0d59c15fc0547585ea588a1b4873c21c79cbfc9 (patch) | |
tree | 7423712f90668030b50c75f4ddde7b2f96c21896 /tools | |
parent | dc84db712f49f0e5b76255c06d74c409e2b15079 (diff) | |
download | FreeBSD-src-e0d59c15fc0547585ea588a1b4873c21c79cbfc9.zip FreeBSD-src-e0d59c15fc0547585ea588a1b4873c21c79cbfc9.tar.gz |
Remove incorrect semicolon.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/lib/libc/nss/test-gethostby.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/regression/lib/libc/nss/test-gethostby.c b/tools/regression/lib/libc/nss/test-gethostby.c index 77455e7..7346544 100644 --- a/tools/regression/lib/libc/nss/test-gethostby.c +++ b/tools/regression/lib/libc/nss/test-gethostby.c @@ -109,7 +109,7 @@ __gethostbyname2(const char *name, int af) else { error = 0; he = getipnodebyname(name, af, ipnode_flags, &error); - if (he == NULL); + if (he == NULL) errno = error; } |