From 0a09482460bb008ec3f52aa7893ca3d193517d15 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Thu, 1 Jun 2000 22:46:20 +0000 Subject: [PATCH] Fixed warning. --- dlls/winsock/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winsock/socket.c b/dlls/winsock/socket.c index 027ea2fc47c..0cf0c476335 100644 --- a/dlls/winsock/socket.c +++ b/dlls/winsock/socket.c @@ -2091,7 +2091,7 @@ static struct WIN_servent* __ws_getservbyport(int port, const char* proto, int d else SetLastError(WSAENOBUFS); } else { - MESSAGE("service on port %ul protocol %s not found; You might want to add " + MESSAGE("service on port %lu 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);