diff options
author | Jim Zubov <jim@commercebyte.com> | 2017-02-07 10:51:09 -0500 |
---|---|---|
committer | Jim Zubov <jim@commercebyte.com> | 2017-02-07 10:51:09 -0500 |
commit | a6acffe421c1ea5e0d654169a17103285711596e (patch) | |
tree | e05a2c2cc676ae7c2a90367c6aab6abd148afb04 /Zend/zend_objects_API.h | |
parent | d94b067504dd949a52fb777fe0b505ab522a8682 (diff) | |
download | php-git-a6acffe421c1ea5e0d654169a17103285711596e.tar.gz |
Alignment fix, as per @nikic
Diffstat (limited to 'Zend/zend_objects_API.h')
-rw-r--r-- | Zend/zend_objects_API.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_objects_API.h b/Zend/zend_objects_API.h index ebf0487519..08b0a13a30 100644 --- a/Zend/zend_objects_API.h +++ b/Zend/zend_objects_API.h @@ -45,7 +45,7 @@ typedef struct _zend_objects_store { uint32_t top; uint32_t size; int free_list_head; - char no_reuse; /* to be set to true when shutting down, to avoid missing dtor call on objects spawned by another dtor */ + int no_reuse; /* to be set to true when shutting down, to avoid missing dtor call on objects spawned by another dtor */ } zend_objects_store; /* Global store handling functions */ |