From 41d6b7aea5f1c9abddf5377dc6f37d8d197e548b Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 8 Nov 2023 10:48:56 +0100 Subject: Fixes --- cube.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cube.h') diff --git a/cube.h b/cube.h index a588ba4..925ea36 100644 --- a/cube.h +++ b/cube.h @@ -3,8 +3,8 @@ typedef __m256i cube_t; #else typedef struct { - uint8_t c[16]; /* Only the first 8 are used, the rest is padding */ - uint8_t e[16]; /* Only the first 12 are used, the rest is padding */ + uint8_t c[8]; + uint8_t e[12]; } cube_t; #endif -- cgit v1.3