Skip to content

Commit b98fc43

Browse files
committed
- Fixed ZTS build
1 parent cd1f45b commit b98fc43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/intl/msgformat/msgformat_class.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ zend_object_value MessageFormatter_object_clone(zval *object TSRMLS_DC)
9797
if (U_FAILURE(INTL_DATA_ERROR_CODE(mfo))) {
9898
intl_errors_set(INTL_DATA_ERROR_P(mfo), INTL_DATA_ERROR_CODE(mfo),
9999
"Failed to clone MessageFormatter object", 0 TSRMLS_CC);
100-
zend_throw_exception_ex(NULL, 0, "Failed to clone MessageFormatter object");
100+
zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Failed to clone MessageFormatter object");
101101
}
102102
} else {
103-
zend_throw_exception_ex(NULL, 0, "Cannot clone unconstructed MessageFormatter");
103+
zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Cannot clone unconstructed MessageFormatter");
104104
}
105105
return new_obj_val;
106106
}

0 commit comments

Comments
 (0)