summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-03-22 21:55:34 -0700
committerStanislav Malyshev <stas@php.net>2015-03-22 21:55:34 -0700
commit57f835e1484034d8198b1373c3263ad2dba1b7a8 (patch)
tree65e041699bd92a3546030abcb3d0a7292d36bd32
parentc12e031530872d73a8315d26d42c14859cf9de8e (diff)
downloadphp-git-57f835e1484034d8198b1373c3263ad2dba1b7a8.tar.gz
oops, forgot TSRMLS_CC
-rw-r--r--ext/date/php_date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index 851e9f7185..b77dbba0cd 100644
--- a/ext/date/php_date.c
+++ b/ext/date/php_date.c
@@ -2926,7 +2926,7 @@ PHP_METHOD(DateTime, createFromImmutable)
php_date_obj *new_obj = NULL;
php_date_obj *old_obj = NULL;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "O", &datetimeimmutable_object, date_ce_immutable) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &datetimeimmutable_object, date_ce_immutable) == FAILURE) {
return;
}