diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-15 23:35:16 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-15 23:35:16 (GMT) |
commit | a4473d0519ece391164179a6946f03562c3d04b7 (patch) | |
tree | bd99290a881dd0dd45971995b548be155c58ef25 /generic/tclHash.c | |
parent | 2e9dff22ea85a50e2c322edd5e33326481dc2073 (diff) | |
download | tcl-a4473d0519ece391164179a6946f03562c3d04b7.zip tcl-a4473d0519ece391164179a6946f03562c3d04b7.tar.gz tcl-a4473d0519ece391164179a6946f03562c3d04b7.tar.bz2 |
Whitespace fixes
Diffstat (limited to 'generic/tclHash.c')
-rw-r--r-- | generic/tclHash.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/generic/tclHash.c b/generic/tclHash.c index 483f684..aeb04f9 100644 --- a/generic/tclHash.c +++ b/generic/tclHash.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclHash.c,v 1.14 2003/11/14 23:21:02 dkf Exp $ + * RCS: @(#) $Id: tclHash.c,v 1.15 2003/11/15 23:35:16 dkf Exp $ */ #include "tclInt.h" @@ -627,11 +627,11 @@ Tcl_DeleteHashTable(tablePtr) */ if (tablePtr->buckets != tablePtr->staticBuckets) { - if (typePtr->flags & TCL_HASH_KEY_SYSTEM_HASH) { + if (typePtr->flags & TCL_HASH_KEY_SYSTEM_HASH) { TclpSysFree((char *) tablePtr->buckets); - } else { - ckfree((char *) tablePtr->buckets); - } + } else { + ckfree((char *) tablePtr->buckets); + } } /* @@ -800,9 +800,9 @@ Tcl_HashStats(tablePtr) * Print out the histogram and a few other pieces of information. */ if (typePtr->flags & TCL_HASH_KEY_SYSTEM_HASH) { - result = (char *) TclpSysAlloc((unsigned) ((NUM_COUNTERS*60) + 300), 0); + result = (char *) TclpSysAlloc((unsigned) (NUM_COUNTERS*60) + 300, 0); } else { - result = (char *) ckalloc((unsigned) ((NUM_COUNTERS*60) + 300)); + result = (char *) ckalloc((unsigned) (NUM_COUNTERS*60) + 300); } sprintf(result, "%d entries in table, %d buckets\n", tablePtr->numEntries, tablePtr->numBuckets); @@ -1175,11 +1175,11 @@ RebuildTable(tablePtr) tablePtr->numBuckets *= 4; if (typePtr->flags & TCL_HASH_KEY_SYSTEM_HASH) { - tablePtr->buckets = (Tcl_HashEntry **) TclpSysAlloc((unsigned) - (tablePtr->numBuckets * sizeof(Tcl_HashEntry *)), 0); + tablePtr->buckets = (Tcl_HashEntry **) TclpSysAlloc((unsigned) + (tablePtr->numBuckets * sizeof(Tcl_HashEntry *)), 0); } else { - tablePtr->buckets = (Tcl_HashEntry **) ckalloc((unsigned) - (tablePtr->numBuckets * sizeof(Tcl_HashEntry *))); + tablePtr->buckets = (Tcl_HashEntry **) ckalloc((unsigned) + (tablePtr->numBuckets * sizeof(Tcl_HashEntry *))); } for (count = tablePtr->numBuckets, newChainPtr = tablePtr->buckets; count > 0; count--, newChainPtr++) { @@ -1233,10 +1233,10 @@ RebuildTable(tablePtr) */ if (oldBuckets != tablePtr->staticBuckets) { - if (typePtr->flags & TCL_HASH_KEY_SYSTEM_HASH) { + if (typePtr->flags & TCL_HASH_KEY_SYSTEM_HASH) { TclpSysFree((char *) oldBuckets); - } else { - ckfree((char *) oldBuckets); - } + } else { + ckfree((char *) oldBuckets); + } } } |