From: wessels <> Date: Wed, 23 Sep 1998 23:09:43 +0000 (+0000) Subject: compiler warnings X-Git-Tag: SQUID_3_0_PRE1~2657 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7df9a3b86f48ed27ccae395e78e268b213822121;p=thirdparty%2Fsquid.git compiler warnings --- diff --git a/src/icmp.cc b/src/icmp.cc index 15e75a42fa..b5fd2e7655 100644 --- a/src/icmp.cc +++ b/src/icmp.cc @@ -1,6 +1,6 @@ /* - * $Id: icmp.cc,v 1.65 1998/09/15 19:37:49 wessels Exp $ + * $Id: icmp.cc,v 1.66 1998/09/23 17:09:43 wessels Exp $ * * DEBUG: section 37 ICMP Routines * AUTHOR: Duane Wessels @@ -106,7 +106,7 @@ icmpSend(pingerEchoData * pkt, int len) int x; if (icmp_sock < 0) return; - x = send(icmp_sock, pkt, len, 0); + x = send(icmp_sock, (char *) pkt, len, 0); if (x < 0) { debug(50, 1) ("icmpSend: send: %s\n", xstrerror()); if (errno == ECONNREFUSED) {