diff options
author | mig <mig> | 2013-02-11 13:48:11 (GMT) |
---|---|---|
committer | mig <mig> | 2013-02-11 13:48:11 (GMT) |
commit | eb1adf553cfd18472faa6c11b1d46434c15e064f (patch) | |
tree | fdcb4fea78988cb86d4aa8b04f01a4ad9526fc0c | |
parent | d11b62c877ee79f8c11311c647cfe2fe619abda0 (diff) | |
download | tcl-eb1adf553cfd18472faa6c11b1d46434c15e064f.zip tcl-eb1adf553cfd18472faa6c11b1d46434c15e064f.tar.gz tcl-eb1adf553cfd18472faa6c11b1d46434c15e064f.tar.bz2 |
fix no-thread build
-rw-r--r-- | generic/tclAllocZippy.c | 2 |
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 */ |