From bdeb220f48825642f84cdbf3ff23a30613c92e86 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 13 Dec 2014 23:06:14 +0100 Subject: first shot remove TSRMLS_* things --- ext/ctype/ctype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/ctype/ctype.c') diff --git a/ext/ctype/ctype.c b/ext/ctype/ctype.c index b03afe05f0..da04f1fad0 100644 --- a/ext/ctype/ctype.c +++ b/ext/ctype/ctype.c @@ -144,7 +144,7 @@ static PHP_MINFO_FUNCTION(ctype) */ #define CTYPE(iswhat) \ zval *c, tmp; \ - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &c) == FAILURE) \ + if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &c) == FAILURE) \ return; \ if (Z_TYPE_P(c) == IS_LONG) { \ if (Z_LVAL_P(c) <= 255 && Z_LVAL_P(c) >= 0) { \ -- cgit v1.2.1