diff options
-rw-r--r-- | ext/sablot/php_sablot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sablot/php_sablot.h b/ext/sablot/php_sablot.h index f912944ac6..45b28869cc 100644 --- a/ext/sablot/php_sablot.h +++ b/ext/sablot/php_sablot.h @@ -108,14 +108,14 @@ typedef struct { /* Sablotron Globals */ -typedef struct _php_sablot_globals { +ZEND_BEGIN_MODULE_GLOBALS(sablot) zval *errorHandler; php_sablot_error *errors; php_sablot_error errors_start; char *output_transform_file; /* For output transformations */ int last_errno; /* Global last_errno, if no handle is found */ SablotHandle processor; -} php_sablot_globals; +ZEND_END_MODULE_GLOBALS(sablot) #ifdef ZTS |