From 5f2589f6cc7a0602fd21424eb0c4338521eb5f21 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 17 Sep 2017 19:34:46 +0200 Subject: [PATCH] chg: (piwi) --- client/hardnested/hardnested_bf_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/hardnested/hardnested_bf_core.c b/client/hardnested/hardnested_bf_core.c index 0d7d238a9..6ade3cbe3 100644 --- a/client/hardnested/hardnested_bf_core.c +++ b/client/hardnested/hardnested_bf_core.c @@ -77,7 +77,7 @@ THE SOFTWARE. #endif #define VECTOR_SIZE (MAX_BITSLICES/8) -typedef unsigned int __attribute__((aligned(VECTOR_SIZE))) __attribute__((vector_size(VECTOR_SIZE))) bitslice_value_t; +typedef uint32_t __attribute__((aligned(VECTOR_SIZE))) __attribute__((vector_size(VECTOR_SIZE))) bitslice_value_t; typedef union { bitslice_value_t value; uint64_t bytes64[MAX_BITSLICES/64];