From 45b5f8f3be9853b6db8def2da7f7ef333d6c8698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Wed, 10 Oct 2018 19:44:32 +0200 Subject: Move block buffer last in hash context structs. --- md2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'md2.h') diff --git a/md2.h b/md2.h index 560b2cbc..0fb9611b 100644 --- a/md2.h +++ b/md2.h @@ -54,8 +54,8 @@ struct md2_ctx { uint8_t C[MD2_BLOCK_SIZE]; uint8_t X[3 * MD2_BLOCK_SIZE]; - uint8_t block[MD2_BLOCK_SIZE]; /* Block buffer */ unsigned index; /* Into buffer */ + uint8_t block[MD2_BLOCK_SIZE]; /* Block buffer */ }; void -- cgit v1.2.1