Skip to content

Commit

Permalink
Fix sch3m4#11 never finding stream
Browse files Browse the repository at this point in the history
  • Loading branch information
luongnv89 committed Jul 28, 2015
1 parent a39926a commit a5d3252
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sfhash.c
Expand Up @@ -7,7 +7,7 @@
* of bytes. No alignment or length assumptions are made about
* the input key.
*/
_HIDDEN unsigned int sfhash(const void * key, unsigned int len, unsigned int initval)
unsigned int sfhash(const void * key, unsigned int len, unsigned int initval)
{
const char * data = key;
unsigned int hash = len + initval, tmp;
Expand Down Expand Up @@ -58,7 +58,7 @@ _HIDDEN unsigned int sfhash(const void * key, unsigned int len, unsigned int ini

/* Special versions for hashing exactly 3 words.
*/
_HIDDEN unsigned int sfhash_3words(unsigned int a, unsigned int b, unsigned int c, unsigned int initval)
unsigned int sfhash_3words(unsigned int a, unsigned int b, unsigned int c, unsigned int initval)
{
unsigned int aux[3] = {a,b,c};

Expand Down

0 comments on commit a5d3252

Please sign in to comment.