summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCian Ferriter <cian.ferriter@intel.com>2016-12-21 16:39:16 +0000
committerBen Pfaff <blp@ovn.org>2016-12-21 08:57:57 -0800
commit91bb4a0be6ac0a475dc95c76774bf797f2d0533b (patch)
treec46942290154567ef32a7b71375714654c31c9e2 /lib
parentf90bb0909c5320c2421cce392ad0d4ffaecb98e7 (diff)
downloadopenvswitch-91bb4a0be6ac0a475dc95c76774bf797f2d0533b.tar.gz
hash: Update murmurhash repo link in comments
The MurmurHash code repo has moved from code.google to github. Update the link to reflect this. Signed-off-by: Cian Ferriter <cian.ferriter@intel.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.h b/lib/hash.h
index f2dd51024..d68ed759a 100644
--- a/lib/hash.h
+++ b/lib/hash.h
@@ -51,7 +51,7 @@ static inline uint32_t hash_pointer(const void *, uint32_t basis);
static inline uint32_t hash_string(const char *, uint32_t basis);
/* Murmurhash by Austin Appleby,
- * from http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp.
+ * from https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp
*
* The upstream license there says:
*