summaryrefslogtreecommitdiff
path: root/ext/hyperwave/hw.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-06-16 03:05:25 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-06-16 03:05:25 +0000
commitb25c652f959204d77bb7ff5b044f671641738615 (patch)
tree5a59edff2fbae8f72fd04c95c7a794d50c0822b2 /ext/hyperwave/hw.c
parent0e4f73ee548026c943a6283045a1731f8e68d340 (diff)
downloadphp-git-b25c652f959204d77bb7ff5b044f671641738615.tar.gz
Fixed a few remaining compiler warnings.
Diffstat (limited to 'ext/hyperwave/hw.c')
-rw-r--r--ext/hyperwave/hw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/hyperwave/hw.c b/ext/hyperwave/hw.c
index 812f6cac78..60f97de2e5 100644
--- a/ext/hyperwave/hw.c
+++ b/ext/hyperwave/hw.c
@@ -1487,7 +1487,7 @@ php_printf("%s\n", ptr);
PHP_FUNCTION(hw_dummy)
{
pval **arg1, **arg2, **arg3;
- int link, id, type, msgid;
+ int link, id, type, msg_id;
hw_connection *ptr;
if (ZEND_NUM_ARGS() != 3 || zend_get_parameters_ex(3, &arg1, &arg2, &arg3) == FAILURE) {
@@ -1496,13 +1496,13 @@ PHP_FUNCTION(hw_dummy)
convert_to_long_ex(arg2);
convert_to_long_ex(arg3);
id=Z_LVAL_PP(arg2);
- msgid=Z_LVAL_PP(arg3);
+ msg_id=Z_LVAL_PP(arg3);
HW_FETCH_LINK(arg1);
set_swap(ptr->swap_on);
{
char *object = NULL;
- if (0 != (ptr->lasterror = send_dummy(ptr->socket, id, msgid, &object)))
+ if (0 != (ptr->lasterror = send_dummy(ptr->socket, id, msg_id, &object)))
RETURN_FALSE;
php_printf("%s", object);