From 404504b1254c15b5caccd8648b2d62e72d9d4ad1 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Tue, 8 Sep 2015 16:18:30 -0700 Subject: [PATCH] Fix arm compilation failures of sockunion_hash issues Compiling for the arm platform with -Werror for the 9196caf commit causes it to fail. This commit addresses this issue --- lib/jhash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jhash.c b/lib/jhash.c index 3cf183299f..decd066cd7 100644 --- a/lib/jhash.c +++ b/lib/jhash.c @@ -105,7 +105,7 @@ jhash (const void *key, u_int32_t length, u_int32_t initval) * The length parameter here is the number of u_int32_ts in the key. */ u_int32_t -jhash2 (u_int32_t * k, u_int32_t length, u_int32_t initval) +jhash2 (const u_int32_t * k, u_int32_t length, u_int32_t initval) { u_int32_t a, b, c, len; -- 2.39.5