summaryrefslogtreecommitdiff
path: root/ext/ctype/ctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ctype/ctype.c')
-rw-r--r--ext/ctype/ctype.c2
1 files changed, 1 insertions, 1 deletions
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) { \