From: hno <> Date: Tue, 25 Jun 2002 17:58:15 +0000 (+0000) Subject: Some casting to hopefully make some compilers more happy about X-Git-Tag: SQUID_3_0_PRE1~946 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6dbedf59358aa87d8a6d6040e4b9fcb8b3761e8c;p=thirdparty%2Fsquid.git Some casting to hopefully make some compilers more happy about signed/unsigned char * --- diff --git a/src/external_acl.cc b/src/external_acl.cc index 65585498c9..0af6063132 100644 --- a/src/external_acl.cc +++ b/src/external_acl.cc @@ -1,6 +1,6 @@ /* - * $Id: external_acl.cc,v 1.2 2002/06/25 11:54:49 hno Exp $ + * $Id: external_acl.cc,v 1.3 2002/06/25 11:58:15 hno Exp $ * * DEBUG: section 82 External ACL * AUTHOR: Henrik Nordstrom, MARA Systems AB @@ -696,8 +696,8 @@ strwordtok(char *buf, char **t) done: *d++ = '\0'; error: - *t = p; - return word; + *t = (char *)p; + return (char *)word; } /*