iliaa           Tue Jan  7 09:34:42 2003 EDT

  Modified files:              
    /php4/ext/domxml    php_domxml.c 
  Log:
  Fixed ZTS build with ZE2.
  
  
Index: php4/ext/domxml/php_domxml.c
diff -u php4/ext/domxml/php_domxml.c:1.230 php4/ext/domxml/php_domxml.c:1.231
--- php4/ext/domxml/php_domxml.c:1.230  Mon Jan  6 04:59:53 2003
+++ php4/ext/domxml/php_domxml.c        Tue Jan  7 09:34:41 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_domxml.c,v 1.230 2003/01/06 09:59:53 chregu Exp $ */
+/* $Id: php_domxml.c,v 1.231 2003/01/07 14:34:41 iliaa Exp $ */
 
 /* TODO
  * - Support Notation Nodes
@@ -782,7 +782,7 @@
        return obj;
 }
 
-static void php_xsltstylesheet_set_object(zval *wrapper, void *obj, int rsrc_type)
+static void php_xsltstylesheet_set_object(zval *wrapper, void *obj, int rsrc_type 
+TSRMLS_DC)
 {
        zval *handle, *addr;
 
@@ -4992,7 +4992,7 @@
 
        object_init_ex(wrapper, domxsltstylesheet_class_entry);
        rsrc_type = le_domxsltstylesheetp;
-       php_xsltstylesheet_set_object(wrapper, (void *) obj, rsrc_type);
+       php_xsltstylesheet_set_object(wrapper, (void *) obj, rsrc_type TSRMLS_CC);
 
        return (wrapper);
 }



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to