* buckets/ssl_buckets.c: Put parens around the argument passed to
   the X509_STORE_get0_param macro as well.

Suggested by: brane


git-svn-id: https://svn.apache.org/repos/asf/serf/trunk@1775251 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/buckets/ssl_buckets.c b/buckets/ssl_buckets.c
index a26a4fa..192b4ae 100644
--- a/buckets/ssl_buckets.c
+++ b/buckets/ssl_buckets.c
@@ -54,7 +54,7 @@
 #endif
 
 #ifdef SERF_NO_SSL_X509_STORE_WRAPPERS
-#define X509_STORE_get0_param(store) (store->param)
+#define X509_STORE_get0_param(store) ((store)->param)
 #endif