From 147abdfd8d84ece0ac7a6520b06ed74f10ed7afa Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 19 Jan 2009 18:42:46 +0000 Subject: * string.c (hash): fixed typo. [ruby-dev:37791] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string.c') diff --git a/string.c b/string.c index f6027df07..1764d69c8 100644 --- a/string.c +++ b/string.c @@ -1973,7 +1973,7 @@ hash(const unsigned char * data, int len, unsigned int h) #else t = (t >> sr) | (d << sl); #endif - h = murmur(h, t); + h = murmur_step(h, t); t = d; data += sizeof(uint32_t); len -= sizeof(uint32_t); -- cgit