fix warning
authorMichael Wallner <mike@php.net>
Mon, 26 Feb 2018 12:39:49 +0000 (13:39 +0100)
committerMichael Wallner <mike@php.net>
Mon, 26 Feb 2018 12:39:49 +0000 (13:39 +0100)
src/php_http_filter.c

index 92bfd1554ef946491b6819f5748d5d3b9b83059b..654edffa113cd1bb1868006053bbaa64375b4043 100644 (file)
@@ -380,7 +380,11 @@ static PHP_HTTP_FILTER_OPS(inflate) = {
        "http.inflate"
 };
 
+#if PHP_VERSION_ID >= 70200
+static php_stream_filter *http_filter_create(const char *name, zval *params, uint8_t p)
+#else
 static php_stream_filter *http_filter_create(const char *name, zval *params, int p)
+#endif
 {
        zval *tmp = params;
        php_stream_filter *f = NULL;