Remove incorrect semicolon.

This commit is contained in:
Stefan Farfeleder 2014-10-26 17:56:58 +00:00
parent d6e53ebe5e
commit dfdc1bec71

View File

@ -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;
}