Add further missing brackets around macro parameters
diff --git a/library/md5.c b/library/md5.c
index bdbb760..a93da8a 100644
--- a/library/md5.c
+++ b/library/md5.c
@@ -142,7 +142,7 @@
 #define P(a,b,c,d,k,s,t)                                        \
     do                                                          \
     {                                                           \
-        (a) += F((b),(c),(d)) + X[k] + (t);                     \
+        (a) += F((b),(c),(d)) + X[(k)] + (t);                   \
         (a) = S((a),(s)) + (b);                                 \
     } while( 0 )