Skip to content

Commit cd1360f

Browse files
committed
Update murmurhash3_32_gc.php
1 parent 2d21d7b commit cd1360f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

murmurhash3_32_gc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @return number 32-bit (base 32 converted) positive integer hash
1616
*/
1717

18-
function murmurhash3_32_opt($key,$seed=0){
18+
function murmurhash3_32_gc($key,$seed=0){
1919
$klen = strlen($key);
2020
$h1 = $seed;
2121
for ($i=0,$bytes=$klen-($remainder=$klen&3) ; $i<$bytes ; ) {

0 commit comments

Comments
 (0)