]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Some casting to hopefully make some compilers more happy about
authorhno <>
Tue, 25 Jun 2002 17:58:15 +0000 (17:58 +0000)
committerhno <>
Tue, 25 Jun 2002 17:58:15 +0000 (17:58 +0000)
signed/unsigned char *

src/external_acl.cc

index 65585498c9991725965e02b18eaf321ee7998264..0af6063132bbdc6167002d6013c3cd72980d3e8f 100644 (file)
@@ -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;
 }
 
 /*