From 7f3563058d6b9215fe93116a71db9573e790e017 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 11 Jun 2014 11:29:44 -0400 Subject: Fix a 32-big conversion warning in 11970 fix --- src/common/sandbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 9581fac51..05b91be7b 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -1352,7 +1352,7 @@ typedef struct cached_getaddrinfo_item_t { static unsigned cached_getaddrinfo_item_hash(const cached_getaddrinfo_item_t *item) { - return siphash24g(item->name, strlen(item->name)) + item->family; + return (unsigned)siphash24g(item->name, strlen(item->name)) + item->family; } static unsigned -- cgit v1.2.3