Skip to content

Commit 3de6695

Browse files
committed
ext/pcntl: Use uint8_t type for num_signals module global
1 parent 89e4de8 commit 3de6695

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pcntl/php_pcntl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ZEND_BEGIN_MODULE_GLOBALS(pcntl)
4848
int last_error;
4949
volatile bool pending_signals;
5050
bool async_signals;
51-
unsigned num_signals;
51+
uint8_t num_signals;
5252
ZEND_END_MODULE_GLOBALS(pcntl)
5353

5454
#if defined(ZTS) && defined(COMPILE_DL_PCNTL)

0 commit comments

Comments
 (0)