]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Francesco Chemolli <kinkie@squid-cache.org>
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 23 Aug 2008 03:39:18 +0000 (15:39 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 23 Aug 2008 03:39:18 +0000 (15:39 +1200)
Fixed typo in squid.h which would prevent leak checking for arrays.

src/squid.h

index ff85684cae2af84f47dcc67f16e8aa05780ff4f9..dde30698f8d94ef26729cb928fa6cd716862fb23 100644 (file)
@@ -315,7 +315,7 @@ SQUIDCEXTERN size_t getpagesize(void);
 #define SA_RESETHAND SA_ONESHOT
 #endif
 
-#if LEACK_CHECK_MODE
+#if LEAK_CHECK_MODE
 #define LOCAL_ARRAY(type,name,size) \
         static type *local_##name=NULL; \
         type *name = local_##name ? local_##name : \