From b046d70676aa77c29e24ccc34406e123be445790 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 15 Jul 2012 13:33:05 +0000 Subject: [PATCH] rc5.h: stop wasting space on 64-bit platforms [breaks binary compatibility!]. --- crypto/rc5/rc5.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto/rc5/rc5.h b/crypto/rc5/rc5.h index 4b3c153b50..a01b5e9f23 100644 --- a/crypto/rc5/rc5.h +++ b/crypto/rc5/rc5.h @@ -72,8 +72,7 @@ extern "C" { #define RC5_ENCRYPT 1 #define RC5_DECRYPT 0 -/* 32 bit. For Alpha, things may get weird */ -#define RC5_32_INT unsigned long +#define RC5_32_INT unsigned int #define RC5_32_BLOCK 8 #define RC5_32_KEY_LENGTH 16 /* This is a default, max is 255 */ -- 2.40.0