1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

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.
This commit is contained in:
Shivam Mathur
2026-02-11 14:54:45 +00:00
committed by GitHub
parent 435e67e075
commit 66d908f112

View File

@@ -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) \