Skip to content
Snippets Groups Projects
Commit 410617fe authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard
Browse files

Fix a mismatch between format string and parameter.

parent 62c5d9f3
No related branches found
No related tags found
No related merge requests found
......@@ -2091,8 +2091,8 @@ static struct WIN_servent* __ws_getservbyport(int port, const char* proto, int d
else SetLastError(WSAENOBUFS);
}
else {
MESSAGE("service on port %d protocol %s not found; You might want to add "
"add this to /etc/services\n", ntohl(port),
MESSAGE("service on port %ul protocol %s not found; You might want to add "
"this to /etc/services\n", (unsigned long)ntohl(port),
proto ? debugstr_a(pwsi->buffer) : "*");
SetLastError(WSANO_DATA);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment