diff options
author | George Peter Banyard <girgias@php.net> | 2020-05-12 22:36:08 +0200 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2020-05-16 15:31:13 +0200 |
commit | 93b51f4e26c5615b1218f8bc3c5d6a5ef2a94b18 (patch) | |
tree | 8bb9ea72c2e1326dfe062da1fe527b621b0b83a1 /ext/curl/php_curl.h | |
parent | b35addc585edf964a1f83e956adff5d32b1242e7 (diff) | |
download | php-git-93b51f4e26c5615b1218f8bc3c5d6a5ef2a94b18.tar.gz |
Fix [-Wundef] warning in cURL extension
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index e7e9361e0e..2013e1cef2 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -26,7 +26,7 @@ #define HAVE_CURL 1 #endif -#if HAVE_CURL +#ifdef HAVE_CURL #define PHP_CURL_DEBUG 0 |