diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-03-30 22:27:48 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-03-30 22:27:48 (GMT) |
commit | 982e8b7e164ff00826c6acf9026c553b7c6fd4e4 (patch) | |
tree | 80c239bbe0fa5389c0f440b7627e90fea9711d0a /generic/tclLiteral.c | |
parent | b5ebf1656938111f1f790346ed24cc0bb450ee69 (diff) | |
download | tcl-982e8b7e164ff00826c6acf9026c553b7c6fd4e4.zip tcl-982e8b7e164ff00826c6acf9026c553b7c6fd4e4.tar.gz tcl-982e8b7e164ff00826c6acf9026c553b7c6fd4e4.tar.bz2 |
More hash function cleaning up.
Diffstat (limited to 'generic/tclLiteral.c')
-rw-r--r-- | generic/tclLiteral.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclLiteral.c b/generic/tclLiteral.c index d5d354f..de41e64 100644 --- a/generic/tclLiteral.c +++ b/generic/tclLiteral.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclLiteral.c,v 1.12 2003/12/24 04:18:20 davygrvy Exp $ + * RCS: @(#) $Id: tclLiteral.c,v 1.13 2004/03/30 22:27:49 dkf Exp $ */ #include "tclInt.h" @@ -789,8 +789,8 @@ HashString(bytes, length) */ result = 0; - for (i = 0; i < length; i++) { - result += (result<<3) + *bytes++; + for (i=0 ; i<length ; i++) { + result += (result<<3) + bytes[i]; } return result; } |