Skip to content

Commit 0115b43

Browse files
committed
Use bool instead of int in session struct
1 parent fd69ada commit 0115b43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/session/php_session.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ typedef struct _php_ps_globals {
174174
zval ps_update_timestamp;
175175
} name;
176176
} mod_user_names;
177-
int mod_user_implemented;
178-
int mod_user_is_open;
177+
bool mod_user_implemented;
178+
bool mod_user_is_open;
179179
zend_string *mod_user_class_name;
180180
const struct ps_serializer_struct *serializer;
181181
zval http_session_vars;

0 commit comments

Comments
 (0)