From 5cfd5e7b178c383d0d9a85ec4cd98c9e06223af7 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 3 May 2014 20:24:43 +1000 Subject: [PATCH] Minor change --- src/stratifier.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stratifier.c b/src/stratifier.c index 4c9ff85c..7b3370de 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -196,7 +196,7 @@ static cklock_t instance_lock; struct share { UT_hash_handle hh; uchar hash[32]; - int64_t workbase_id; + uint64_t workbase_id; }; typedef struct share share_t; @@ -342,7 +342,7 @@ static void clear_workbase(workbase_t *wb) free(wb); } -static void purge_share_hashtable(int wb_id) +static void purge_share_hashtable(uint64_t wb_id) { share_t *share, *tmp; int purged = 0;