From 56ad566af1e595dacfcc5a213d906e8070bb263c Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 16 Aug 2012 04:56:47 -0400 Subject: Fix compilation error in Python murmurhash bindings The compilation produced an error due to missing declaration of uint32_t and a couple of warnings caused by different prototypes of argument parsing functions in older Python releases. --- src/util/murmurhash3.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/util') diff --git a/src/util/murmurhash3.h b/src/util/murmurhash3.h index 9174554b..db7d8a48 100644 --- a/src/util/murmurhash3.h +++ b/src/util/murmurhash3.h @@ -6,5 +6,7 @@ * clients can be both 64 or 32 bit at the same time. */ +#include + uint32_t murmurhash3(const char *key, int len, uint32_t seed); -- cgit