diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-18 22:00:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-18 22:00:57 (GMT) |
commit | 2b41844782e22787bbd8b88ba36bf09ee9f09be0 (patch) | |
tree | 516cef05fc4d9521596c6e6e1b007850d985ba7e /generic/tclThreadStorage.c | |
parent | b667daf155374f8d2ee36c77df720faa3d59f175 (diff) | |
download | tcl-2b41844782e22787bbd8b88ba36bf09ee9f09be0.zip tcl-2b41844782e22787bbd8b88ba36bf09ee9f09be0.tar.gz tcl-2b41844782e22787bbd8b88ba36bf09ee9f09be0.tar.bz2 |
Avoid using 'new' as an identifier.
Diffstat (limited to 'generic/tclThreadStorage.c')
-rw-r--r-- | generic/tclThreadStorage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclThreadStorage.c b/generic/tclThreadStorage.c index 70a0c11..36ce257 100644 --- a/generic/tclThreadStorage.c +++ b/generic/tclThreadStorage.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadStorage.c,v 1.13 2007/07/31 17:03:39 msofer Exp $ + * RCS: @(#) $Id: tclThreadStorage.c,v 1.14 2007/11/18 22:00:57 dkf Exp $ */ #include "tclInt.h" @@ -192,7 +192,7 @@ ThreadStorageGetHashTable( { int index = PTR2UINT(id) % STORAGE_CACHE_SLOTS; Tcl_HashEntry *hPtr; - int new; + int isNew; /* * It's important that we pick up the hash table pointer BEFORE comparing @@ -241,7 +241,7 @@ ThreadStorageGetHashTable( */ hPtr = Tcl_CreateHashEntry(&threadStorageHashTable, (char *) id, - &new); + &isNew); if (hPtr == NULL) { Tcl_Panic("Tcl_CreateHashEntry failed from " |