From 3de6695ae81b9fa446d8a7545bc255ab6bf4dab6 Mon Sep 17 00:00:00 2001 From: Gina Peter Banyard Date: Sun, 6 Jul 2025 15:42:59 +0100 Subject: [PATCH] ext/pcntl: Use uint8_t type for num_signals module global --- ext/pcntl/php_pcntl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pcntl/php_pcntl.h b/ext/pcntl/php_pcntl.h index e190767a6dd..a16b3e0f47e 100644 --- a/ext/pcntl/php_pcntl.h +++ b/ext/pcntl/php_pcntl.h @@ -48,7 +48,7 @@ ZEND_BEGIN_MODULE_GLOBALS(pcntl) int last_error; volatile bool pending_signals; bool async_signals; - unsigned num_signals; + uint8_t num_signals; ZEND_END_MODULE_GLOBALS(pcntl) #if defined(ZTS) && defined(COMPILE_DL_PCNTL)