fix memset arg order
[m6w6/ext-http] / php_http_curl_client.h
index 64aacf072f42a282b3d3053f3a4efe2b6a9d2e89..ae2a0b817ab94db5211f6ca9ad57c734df16d3ae 100644 (file)
@@ -49,7 +49,7 @@ typedef struct php_http_curl_client_storage {
        char errorbuffer[0x100];
 } php_http_curl_client_storage_t;
 
-static inline php_http_curl_client_storage_t *get_storage(CURL *ch) {
+static inline php_http_curl_client_storage_t *php_http_curl_client_get_storage(CURL *ch) {
        php_http_curl_client_storage_t *st = NULL;
 
        curl_easy_getinfo(ch, CURLINFO_PRIVATE, &st);