diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-16 12:03:25 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-16 12:03:25 (GMT) |
commit | 63d6ebbdc5448ceb5e98cb1ca0b7fadb1ebe9350 (patch) | |
tree | 380c8174739958989e5022ea5c613c74b7747df6 /generic/tclHash.c | |
parent | 6203c60601717753524d662bbc900adfa3e86ddf (diff) | |
parent | 96af7fcd51a853aac2eb09b6de444a9789e04638 (diff) | |
download | tcl-63d6ebbdc5448ceb5e98cb1ca0b7fadb1ebe9350.zip tcl-63d6ebbdc5448ceb5e98cb1ca0b7fadb1ebe9350.tar.gz tcl-63d6ebbdc5448ceb5e98cb1ca0b7fadb1ebe9350.tar.bz2 |
[Bug 3388350] mingw64 compiler warnings
Diffstat (limited to 'generic/tclHash.c')
-rw-r--r-- | generic/tclHash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclHash.c b/generic/tclHash.c index 00bfdf0..256b073 100644 --- a/generic/tclHash.c +++ b/generic/tclHash.c @@ -434,7 +434,7 @@ Tcl_DeleteHashEntry( #if TCL_HASH_KEY_STORE_HASH if (typePtr->hashKeyProc == NULL || typePtr->flags & TCL_HASH_KEY_RANDOMIZE_HASH) { - index = RANDOM_INDEX (tablePtr, entryPtr->hash); + index = RANDOM_INDEX(tablePtr, PTR2UINT(entryPtr->hash)); } else { index = PTR2UINT(entryPtr->hash) & tablePtr->mask; } @@ -1064,7 +1064,7 @@ RebuildTable( #if TCL_HASH_KEY_STORE_HASH if (typePtr->hashKeyProc == NULL || typePtr->flags & TCL_HASH_KEY_RANDOMIZE_HASH) { - index = RANDOM_INDEX (tablePtr, hPtr->hash); + index = RANDOM_INDEX (tablePtr, PTR2UINT(hPtr->hash)); } else { index = PTR2UINT(hPtr->hash) & tablePtr->mask; } |