Add further missing brackets around macro parameters
diff --git a/library/sha256.c b/library/sha256.c
index 09d3fe3..2dc0e1a 100644
--- a/library/sha256.c
+++ b/library/sha256.c
@@ -193,8 +193,8 @@
 #define P(a,b,c,d,e,f,g,h,x,K)                          \
     do                                                  \
     {                                                   \
-        temp1 = (h) + S3(e) + F1(e,f,g) + (K) + (x);    \
-        temp2 = S2(a) + F0(a,b,c);                      \
+        temp1 = (h) + S3(e) + F1((e),(f),(g)) + (K) + (x);      \
+        temp2 = S2(a) + F0((a),(b),(c));                        \
         (d) += temp1; (h) = temp1 + temp2;              \
     } while( 0 )