From e43ffb5023432091b38391d4034de0c8c213bf2d Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Fri, 17 Nov 2023 13:33:51 +0000 Subject: [PATCH] Fix stream fclose_stdiocast_flush_in_progress type --- main/php_streams.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/php_streams.h b/main/php_streams.h index c9a17f22dab..adf1f812736 100644 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -207,7 +207,7 @@ struct _php_stream { uint8_t fclose_stdiocast:2; /* whether stdio cast flushing is in progress */ - int8_t fclose_stdiocast_flush_in_progress:1; + uint8_t fclose_stdiocast_flush_in_progress:1; char mode[16]; /* "rwb" etc. ala stdio */