# HG changeset patch # User Jim Meyering # Date 975317633 0 # Node ID afbc52b3a5cfa470d80958a5217cff1f22eed725 # Parent 24f14a707735a2f9cfda3c2fc487ddb4c0520b25 remove useless parens diff --git a/lib/md5.h b/lib/md5.h --- a/lib/md5.h +++ b/lib/md5.h @@ -145,7 +145,7 @@ /* The following is from gnupg-1.0.2's cipher/bithelp.h. */ /* Rotate a 32 bit integer by n bytes */ -#if defined(__GNUC__) && defined(__i386__) +#if defined __GNUC__ && defined __i386__ static inline md5_uint32 rol(md5_uint32 x, int n) {