diff options
author | Antony Dovgal <tony2001@php.net> | 2010-04-20 12:50:02 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2010-04-20 12:50:02 +0000 |
commit | 91a214008c658526c2b9bdcee6ac8ad022a8d717 (patch) | |
tree | b899c14236902e5b2b4cf0b1218744661eaa948a | |
parent | b6ae8a964bf08702f0726bcb90fb4831c588c006 (diff) | |
download | php-git-91a214008c658526c2b9bdcee6ac8ad022a8d717.tar.gz |
fix build
-rw-r--r-- | ext/curl/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/interface.c b/ext/curl/interface.c index 81ceb84dcc..8efabd9202 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -1968,7 +1968,7 @@ static int _php_curl_setopt(php_curl *ch, long option, zval **zvalue, zval *retu SAVE_CURL_ERROR(ch, error); if (error != CURLE_OK) { - RETVAL_FALSE + RETVAL_FALSE; return 1; } |