diff options
author | das <das> | 2007-05-09 12:50:07 (GMT) |
---|---|---|
committer | das <das> | 2007-05-09 12:50:07 (GMT) |
commit | b36ede5255b11e14ae184398ad0529c17b73bad9 (patch) | |
tree | 3cdddf0441e12bed597c7aa0d115ae43fe7b8639 | |
parent | da6c10f827c3825c5cdd1f0f8d1af2acba0a0ef3 (diff) | |
download | tcl-b36ede5255b11e14ae184398ad0529c17b73bad9.zip tcl-b36ede5255b11e14ae184398ad0529c17b73bad9.tar.gz tcl-b36ede5255b11e14ae184398ad0529c17b73bad9.tar.bz2 |
* generic/tclInt.h: fix warning when building threaded with -DPURIFY.
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index c839e3c..70c4d80 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.307 2007/05/05 23:33:14 dkf Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.308 2007/05/09 12:50:07 das Exp $ */ #ifndef _TCLINT @@ -3013,6 +3013,7 @@ MODULE_SCOPE void TclInvalidateNsPath(Namespace *nsPtr); # define TclFreeObjStorage(objPtr) \ ckfree((char *) (objPtr)) +#undef USE_THREAD_ALLOC #elif defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) /* |