More -Wall cleanup from Schwern; the EBCDIC MD5.xs checksum
[p5sagit/p5-mst-13.2.git] / ext / Digest / MD5 / MD5.xs
index 12642ae..32ba8d4 100644 (file)
@@ -136,7 +136,7 @@ static unsigned char PADDING[64] = {
 
 /* F, G, H and I are basic MD5 functions.
  */
-#define F(x, y, z) (((x) & ((y) ^ (z)) ^ (z)))
+#define F(x, y, z) ((((x) & ((y) ^ (z))) ^ (z)))
 #define G(x, y, z) F(z, x, y)
 #define H(x, y, z) ((x) ^ (y) ^ (z))
 #define I(x, y, z) ((y) ^ ((x) | (~z)))