summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipensp@gmail.com>2012-08-22 19:39:57 -0300
committerFelipe Pena <felipensp@gmail.com>2012-08-22 19:39:57 -0300
commitb98fc4379f1279a06fa01a90e79f2145d9498be0 (patch)
tree04271936d96fdbbbe88c7f7ab70bb7c16ea43805
parentcd1f45b3be2e630aab32f58770124d38661b518e (diff)
downloadphp-git-b98fc4379f1279a06fa01a90e79f2145d9498be0.tar.gz
- Fixed ZTS build
-rw-r--r--ext/intl/msgformat/msgformat_class.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/msgformat/msgformat_class.c b/ext/intl/msgformat/msgformat_class.c
index ead0e5f143..da1e1e595a 100644
--- a/ext/intl/msgformat/msgformat_class.c
+++ b/ext/intl/msgformat/msgformat_class.c
@@ -97,10 +97,10 @@ zend_object_value MessageFormatter_object_clone(zval *object TSRMLS_DC)
if (U_FAILURE(INTL_DATA_ERROR_CODE(mfo))) {
intl_errors_set(INTL_DATA_ERROR_P(mfo), INTL_DATA_ERROR_CODE(mfo),
"Failed to clone MessageFormatter object", 0 TSRMLS_CC);
- zend_throw_exception_ex(NULL, 0, "Failed to clone MessageFormatter object");
+ zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Failed to clone MessageFormatter object");
}
} else {
- zend_throw_exception_ex(NULL, 0, "Cannot clone unconstructed MessageFormatter");
+ zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Cannot clone unconstructed MessageFormatter");
}
return new_obj_val;
}