summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormig <mig>2013-02-11 13:48:11 (GMT)
committermig <mig>2013-02-11 13:48:11 (GMT)
commiteb1adf553cfd18472faa6c11b1d46434c15e064f (patch)
treefdcb4fea78988cb86d4aa8b04f01a4ad9526fc0c
parentd11b62c877ee79f8c11311c647cfe2fe619abda0 (diff)
downloadtcl-eb1adf553cfd18472faa6c11b1d46434c15e064f.zip
tcl-eb1adf553cfd18472faa6c11b1d46434c15e064f.tar.gz
tcl-eb1adf553cfd18472faa6c11b1d46434c15e064f.tar.bz2
fix no-thread build
-rw-r--r--generic/tclAllocZippy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclAllocZippy.c b/generic/tclAllocZippy.c
index 1a27828..9126046 100644
--- a/generic/tclAllocZippy.c
+++ b/generic/tclAllocZippy.c
@@ -106,7 +106,7 @@ typedef struct Bucket {
long numFree; /* Number of blocks available */
/* All fields below for accounting only */
-#ifdef TCL_THREADS
+#if ZIPPY
long numRemoves; /* Number of removes from bucket */
long numInserts; /* Number of inserts into bucket */
long numWaits; /* Number of waits to acquire a lock */