Commit 6c5d6837 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix signedness

parent ced75b55
...@@ -398,7 +398,7 @@ getaddrinfo (const char *node, const char *service, ...@@ -398,7 +398,7 @@ getaddrinfo (const char *node, const char *service,
port = 0; port = 0;
else else
{ {
long d; unsigned long d;
char *end; char *end;
d = strtoul (service, &end, 0); d = strtoul (service, &end, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment