Commit 66d908f112f for php.net

commit 66d908f112f309c19392e00fbff9a2d0f473c1eb
Author: Shivam Mathur <shivam_jpr@hotmail.com>
Date:   Wed Feb 11 14:54:45 2026 +0000

    ext/session: fix PS_FUNCS() macro expansion (#21196)

    Added the missing trailing `;` after `PS_CREATE_SID_FUNC(x)` so `PS_FUNCS(x)` expands to valid prototypes.

diff --git a/ext/session/php_session.h b/ext/session/php_session.h
index 83654686758..ae5fa154bae 100644
--- a/ext/session/php_session.h
+++ b/ext/session/php_session.h
@@ -70,7 +70,7 @@ typedef struct ps_module_struct {
 	PS_WRITE_FUNC(x); \
 	PS_DESTROY_FUNC(x); \
 	PS_GC_FUNC(x);	\
-	PS_CREATE_SID_FUNC(x) \
+	PS_CREATE_SID_FUNC(x); \
 	PS_VALIDATE_SID_FUNC(x);

 #define PS_MOD(x) \