diff options
author | Tom Van Looy <tom@ctors.net> | 2017-06-25 23:24:23 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-06-26 00:23:25 +0200 |
commit | 04fb3f28ff677d036cfaf902f07b75f0346a5c33 (patch) | |
tree | 853db28cee8906637515d49c758776032884fe37 /ext/curl/interface.c | |
parent | b3849edf2ce168740256c48ee0a4631bb56086b8 (diff) | |
download | php-git-04fb3f28ff677d036cfaf902f07b75f0346a5c33.tar.gz |
Remove superfluous semicolons
Diffstat (limited to 'ext/curl/interface.c')
-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 3684222f93..0d1152b987 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -2508,7 +2508,7 @@ static int _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue) /* {{{ zval_ptr_dtor(&ch->handlers->write_header->stream); ch->handlers->write_header->fp = fp; ch->handlers->write_header->method = PHP_CURL_FILE; - ZVAL_COPY(&ch->handlers->write_header->stream, zvalue);; + ZVAL_COPY(&ch->handlers->write_header->stream, zvalue); } else { php_error_docref(NULL, E_WARNING, "the provided file handle is not writable"); return FAILURE; |