summaryrefslogtreecommitdiffstats
path: root/generic/tclVar.c
diff options
context:
space:
mode:
authordas <das>2007-09-03 01:36:24 (GMT)
committerdas <das>2007-09-03 01:36:24 (GMT)
commit5b7651bcebf601b398730591d1e15d0a513aab91 (patch)
tree26828a56df6028cc7b7d42bf2bac12061db6eedc /generic/tclVar.c
parentd79914f88c810c5826589958b191fe521bb2783a (diff)
downloadtcl-5b7651bcebf601b398730591d1e15d0a513aab91.zip
tcl-5b7651bcebf601b398730591d1e15d0a513aab91.tar.gz
tcl-5b7651bcebf601b398730591d1e15d0a513aab91.tar.bz2
make tclVarHashKeyType definition static
Diffstat (limited to 'generic/tclVar.c')
-rw-r--r--generic/tclVar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclVar.c b/generic/tclVar.c
index 7b9fe10..103690d 100644
--- a/generic/tclVar.c
+++ b/generic/tclVar.c
@@ -16,7 +16,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclVar.c,v 1.150 2007/08/17 01:11:43 msofer Exp $
+ * RCS: @(#) $Id: tclVar.c,v 1.151 2007/09/03 01:36:24 das Exp $
*/
#include "tclInt.h"
@@ -31,7 +31,7 @@ static void FreeVarEntry(Tcl_HashEntry *hPtr);
static int CompareVarKeys(void *keyPtr, Tcl_HashEntry *hPtr);
static unsigned int HashVarKey(Tcl_HashTable *tablePtr, void *keyPtr);
-Tcl_HashKeyType tclVarHashKeyType = {
+static Tcl_HashKeyType tclVarHashKeyType = {
TCL_HASH_KEY_TYPE_VERSION, /* version */
0, /* flags */
HashVarKey, /* hashKeyProc */