Make this compile. Killed one compile warning.

# I still get a lot warnings when compiling sablot.c
This commit is contained in:
foobar 2001-05-28 21:06:50 +00:00
parent 0404618712
commit 3e7754c51e
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ extern void xslt_free_arguments(xslt_args *);
extern void xslt_assign_handler(struct xslt_function **, zval **);
extern void xslt_free_handler(struct xslt_function *);
extern void xslt_call_function(char *, struct xslt_function *, int, zval **, zval **);
extern void xslt_call_function(char *, zval *, int, zval **, zval **);
extern void xslt_debug(char *, char *, ...);

View File

@ -225,7 +225,7 @@ extern void xslt_call_function(char *name,
/* Call the function */
error = call_user_function_ex(EG(function_table),
NULL, function,
retval, argc, argv, O, NULL);
retval, argc, argv, 0, NULL);
if (error == FAILURE) {
php_error(E_WARNING, "Cannot call the %s handler: %s",
name, Z_STRVAL_P(function));