summaryrefslogtreecommitdiffstats
path: root/generic/tclObj.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-02-10 16:29:49 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-02-10 16:29:49 (GMT)
commit25174c675ed97c5219e2e92570ee0760a7081d0f (patch)
tree8987de7ab1b1887160efec0fecffcc187da51147 /generic/tclObj.c
parent4b0dfd608991970784e6307be9a228fdc90a3a7c (diff)
downloadtcl-25174c675ed97c5219e2e92570ee0760a7081d0f.zip
tcl-25174c675ed97c5219e2e92570ee0760a7081d0f.tar.gz
tcl-25174c675ed97c5219e2e92570ee0760a7081d0f.tar.bz2
Forgot the magic bias values. FNV is wildly magical...
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r--generic/tclObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c
index 6287b24..b45d1c8 100644
--- a/generic/tclObj.c
+++ b/generic/tclObj.c
@@ -13,7 +13,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.167 2010/02/07 09:10:33 dkf Exp $
+ * RCS: @(#) $Id: tclObj.c,v 1.168 2010/02/10 16:29:49 dkf Exp $
*/
#include "tclInt.h"
@@ -4038,7 +4038,7 @@ TclHashObjKey(
void *keyPtr) /* Key from which to compute hash value. */
{
Tcl_Obj *objPtr = keyPtr;
- register unsigned result = 0;
+ register unsigned result = 0x811c9dc5;
const unsigned char *string = (unsigned char *) TclGetString(objPtr);
const unsigned char *last = string + objPtr->length;