diff options
author | Sara Golemon <pollita@php.net> | 2005-12-29 06:02:17 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2005-12-29 06:02:17 +0000 |
commit | 3795f9d8bb6b0fac5ca48d98afe84941c7661b98 (patch) | |
tree | 18830a6c7a16cb0bfea60697a8d7d5439af7f8d3 | |
parent | 0e396980a1fd7a15d79f99549a5e00f43d2fdc23 (diff) | |
download | php-git-3795f9d8bb6b0fac5ca48d98afe84941c7661b98.tar.gz |
MFH(r-1.7) Silence compiler warning: unused variable
-rw-r--r-- | sapi/embed/php_embed.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sapi/embed/php_embed.h b/sapi/embed/php_embed.h index c3ee95d7e1..ab59ada1f0 100644 --- a/sapi/embed/php_embed.h +++ b/sapi/embed/php_embed.h @@ -32,18 +32,24 @@ #define PTSRMLS_DC , PTSRMLS_D #define PTSRMLS_C &tsrm_ls #define PTSRMLS_CC , PTSRMLS_C + +#define PHP_EMBED_START_BLOCK(x,y) { \ + void ***tsrm_ls; \ + php_embed_init(x, y PTSRMLS_CC); \ + zend_first_try { + #else #define PTSRMLS_D #define PTSRMLS_DC #define PTSRMLS_C #define PTSRMLS_CC -#endif #define PHP_EMBED_START_BLOCK(x,y) { \ - void ***tsrm_ls; \ - php_embed_init(x, y PTSRMLS_CC); \ + php_embed_init(x, y); \ zend_first_try { +#endif + #define PHP_EMBED_END_BLOCK() \ } zend_catch { \ /* int exit_status = EG(exit_status); */ \ |