summaryrefslogtreecommitdiff
path: root/ext/com
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2001-10-05 12:22:12 +0000
committerSascha Schumann <sas@php.net>2001-10-05 12:22:12 +0000
commit0c79e85edeb2d70dc2925501e41c5b514da2c458 (patch)
tree7303641142aea6bc5319f1d63e6b8c5acdc32ddc /ext/com
parent1c7e920a9e714b4ec5a55ec96c4d03ae36dcf543 (diff)
downloadphp-git-0c79e85edeb2d70dc2925501e41c5b514da2c458.tar.gz
fix declaration
Diffstat (limited to 'ext/com')
-rw-r--r--ext/com/VARIANT.c2
-rw-r--r--ext/com/php_VARIANT.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/com/VARIANT.c b/ext/com/VARIANT.c
index 8125b6fc71..89e62de48f 100644
--- a/ext/com/VARIANT.c
+++ b/ext/com/VARIANT.c
@@ -45,7 +45,7 @@ static int codepage;
static zend_class_entry VARIANT_class_entry;
-void php_VARIANT_init(int module_number, TSRMLS_D)
+void php_VARIANT_init(int module_number TSRMLS_DC)
{
le_variant = zend_register_list_destructors_ex(php_VARIANT_destructor, NULL, "VARIANT", module_number);
diff --git a/ext/com/php_VARIANT.h b/ext/com/php_VARIANT.h
index 3f82984758..54347461c8 100644
--- a/ext/com/php_VARIANT.h
+++ b/ext/com/php_VARIANT.h
@@ -8,7 +8,7 @@ BEGIN_EXTERN_C()
#include "conversion.h"
#include "variant.h"
-void php_VARIANT_init(int module_number, TSRMLS_D);
+void php_VARIANT_init(int module_number TSRMLS_DC);
PHPAPI int php_VARIANT_get_le_variant();