From dca0aaa15884eb5bf1105e1c7a6323f11be4abd3 Mon Sep 17 00:00:00 2001 From: miod <> Date: Sun, 27 Apr 2014 20:20:59 +0000 Subject: Put explicit (void) in function declarations and shuffle keywords in some declaration to pass -Wextra, should we want to add it to CFLAGS. No binary change. --- src/lib/libcrypto/cast/c_enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/cast') diff --git a/src/lib/libcrypto/cast/c_enc.c b/src/lib/libcrypto/cast/c_enc.c index 2ae54f5cfb..a1f28293f1 100644 --- a/src/lib/libcrypto/cast/c_enc.c +++ b/src/lib/libcrypto/cast/c_enc.c @@ -63,7 +63,7 @@ void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key) { register CAST_LONG l,r,t; - const register CAST_LONG *k; + register const CAST_LONG *k; k= &(key->data[0]); l=data[0]; @@ -96,7 +96,7 @@ void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key) void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key) { register CAST_LONG l,r,t; - const register CAST_LONG *k; + register const CAST_LONG *k; k= &(key->data[0]); l=data[0]; -- cgit v1.2.3-55-g6feb