summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-02-10 23:22:49 +0000
committerWez Furlong <wez@php.net>2003-02-10 23:22:49 +0000
commit0c70df490705fbefbcd7e776c9b45ed69217e1e0 (patch)
tree76ab01ad25b502eb1387798f6dee82f86fead543
parent53b7b0eb8c9f927e4dfdf9ab7b5a4c1b8e27e319 (diff)
downloadphp-git-0c70df490705fbefbcd7e776c9b45ed69217e1e0.tar.gz
fix rpc_error call
-rw-r--r--ext/rpc/com/com_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/rpc/com/com_wrapper.c b/ext/rpc/com/com_wrapper.c
index b7de426292..1c27c4d774 100644
--- a/ext/rpc/com/com_wrapper.c
+++ b/ext/rpc/com/com_wrapper.c
@@ -880,7 +880,7 @@ ZEND_API int php_COM_load_typelib(ITypeLib *TypeLib, int mode)
/* Oops, it already exists. No problem if it is defined as the same value */
/* Check to see if they are the same */
if (!compare_function(&results, &c.value, &exists TSRMLS_CC) && INI_INT("com.autoregister_verbose")) {
- rpc_error(NULL TSRMLS_CC, E_WARNING, "Type library value %s is already defined and has a different value", c.name);
+ rpc_error(E_WARNING, "Type library value %s is already defined and has a different value", c.name);
}
free(c.name);
j++;