diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-10 12:45:58 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-10 12:45:58 +0000 |
commit | c28a26b119f7b2677c990843fdbe0667d5064146 (patch) | |
tree | 92bc62aaeec3bcc44d819a3d471f857e5c1387fe | |
parent | 38c101521b7275af7fe30bb249f0b8f2b4f37462 (diff) | |
download | php-git-c28a26b119f7b2677c990843fdbe0667d5064146.tar.gz |
There we go.
-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 |