Skip to content

Commit 80c8ca9

Browse files
committed
Use uint32_t for variable storing ZEND_NUM_ARGS()
1 parent e35cd34 commit 80c8ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/assert.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ PHP_FUNCTION(assert_options)
195195
zval *value = NULL;
196196
zend_long what;
197197
bool oldint;
198-
int ac = ZEND_NUM_ARGS();
198+
uint32_t ac = ZEND_NUM_ARGS();
199199
zend_string *key;
200200

201201
ZEND_PARSE_PARAMETERS_START(1, 2)

0 commit comments

Comments
 (0)