]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Francesco Chemolli <kinkie@squid-cache.org>
authorAmos Jeffries <amosjeffries@squid-cache.org>
Sun, 31 Aug 2008 13:58:03 +0000 (07:58 -0600)
committerAmos Jeffries <amosjeffries@squid-cache.org>
Sun, 31 Aug 2008 13:58:03 +0000 (07:58 -0600)
Fixed typo in squid.h which would prevent leak checking for arrays.

src/squid.h

index 0ec7ed668f02166fb711248f7ffe4a6d069c7384..e9e8b04d1f16c112e1d3e203d00f10f291f0235a 100644 (file)
@@ -316,7 +316,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 : \