From c93bd73f12d7036d297d00fc4082699f568c7d43 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 22 Apr 2010 21:36:05 +0000 Subject: [PATCH] fix 64-bit value for W_SHIFT, which thankfully appears to be not used --- includes/Cmm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Cmm.h b/includes/Cmm.h index 183e103..52b5bec 100644 --- a/includes/Cmm.h +++ b/includes/Cmm.h @@ -169,7 +169,7 @@ #if SIZEOF_W == 4 #define W_SHIFT 2 #elif SIZEOF_W == 8 -#define W_SHIFT 4 +#define W_SHIFT 3 #endif /* Converting quantities of words to bytes */ -- 1.7.10.4