Skip to content

Commit 8d963b1

Browse files
committed
non ZTS build fix
1 parent 6a09989 commit 8d963b1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Zend/zend_ini_parser.y

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@
4646
#define ZEND_INI_PARSER_ARG (CG(ini_parser_param))->arg
4747

4848
int ini_lex(zval *ini_lval TSRMLS_DC);
49+
#ifdef ZTS
4950
int ini_parse(void *arg);
51+
#else
52+
int ini_parse(void);
53+
#endif
5054

5155
zval yylval;
5256

0 commit comments

Comments
 (0)