summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgeorgeps <georgeps>2005-08-17 23:57:36 (GMT)
committergeorgeps <georgeps>2005-08-17 23:57:36 (GMT)
commit1b3ac5ba563f3739fb8dfbc2ed99ca5e842adad5 (patch)
tree19a137b97dc0d90b58c76ffa4c714025b03442dd
parent8f7a3c7bd3fa36208b402a2bca4912b258e300ae (diff)
downloadtcl-1b3ac5ba563f3739fb8dfbc2ed99ca5e842adad5.zip
tcl-1b3ac5ba563f3739fb8dfbc2ed99ca5e842adad5.tar.gz
tcl-1b3ac5ba563f3739fb8dfbc2ed99ca5e842adad5.tar.bz2
fix a namespace clash with pendingObjData.
-rw-r--r--generic/tclObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c
index 87e66a0..9bfee26 100644
--- a/generic/tclObj.c
+++ b/generic/tclObj.c
@@ -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: tclObj.c,v 1.93 2005/08/04 19:56:31 dgp Exp $
+ * RCS: @(#) $Id: tclObj.c,v 1.94 2005/08/17 23:57:36 georgeps Exp $
*/
#include "tclInt.h"
@@ -137,7 +137,7 @@ typedef struct PendingObjData {
* Macro to set up the local reference to the deletion context.
*/
#ifndef TCL_THREADS
-PendingObjData pendingObjData;
+static PendingObjData pendingObjData;
#define ObjInitDeletionContext(contextPtr) \
PendingObjData *CONST contextPtr = &pendingObjData
#else