From 4da89d86ec4f21a1c6933cd0cb57fc08e75b4f6a 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 0837472d2f6..17161d70ad5 100644 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -212,7 +212,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 */