Following up on r1786654, properly declare the new API function,
serf_bucket_is_brotli_supported() as a function without arguments.

* serf_bucket_types.h
  (serf_bucket_is_brotli_supported): As above.

* buckets/brotli_buckets.c
  (serf_bucket_is_brotli_supported): As above.


git-svn-id: https://svn.apache.org/repos/asf/serf/trunk@1791833 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/buckets/brotli_buckets.c b/buckets/brotli_buckets.c
index ee4fbe4..0677911 100644
--- a/buckets/brotli_buckets.c
+++ b/buckets/brotli_buckets.c
@@ -26,7 +26,7 @@
 
 #include <brotli/decode.h>
 
-int serf_bucket_is_brotli_supported()
+int serf_bucket_is_brotli_supported(void)
 {
     return TRUE;
 }
@@ -218,7 +218,7 @@
 
 #else /* SERF_HAVE_BROTLI */
 
-int serf_bucket_is_brotli_supported()
+int serf_bucket_is_brotli_supported(void)
 {
     return FALSE;
 }
diff --git a/serf_bucket_types.h b/serf_bucket_types.h
index 578a9ef..fdb1534 100644
--- a/serf_bucket_types.h
+++ b/serf_bucket_types.h
@@ -880,7 +880,7 @@
  *
  * @since New in 1.4.
  */
-int serf_bucket_is_brotli_supported();
+int serf_bucket_is_brotli_supported(void);
 
 /** @since New in 1.4. */
 extern const serf_bucket_type_t serf_bucket_type_brotli_decompress;