From 4675ba50772169a1c7b429703ae014cb113a239a Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 22 Oct 2001 16:51:17 +0000 Subject: [PATCH] fixed warning --- src/rsrv/caservertask.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rsrv/caservertask.c b/src/rsrv/caservertask.c index a9bb49c11..893c247fb 100644 --- a/src/rsrv/caservertask.c +++ b/src/rsrv/caservertask.c @@ -342,8 +342,8 @@ LOCAL void log_one_client (struct client *client, unsigned level) ellCount(&client->addrq), client->priority ); if (level>=1) { - printf ("\tTask Id=%p, Protocol=%3s, Socket FD=%d\n", client->tid, - (void *) pproto, client->sock); + printf ("\tTask Id=%p, Protocol=%3s, Socket FD=%d\n", (void *) client->tid, + pproto, client->sock); printf( "\tSecs since last send %6.2f, Secs since last receive %6.2f\n", send_delay, recv_delay);