From: Ilia Alshanetsky Date: Thu, 22 Aug 2002 12:15:20 +0000 (+0000) Subject: Fixed a number of compile warnings. X-Git-Tag: RELEASE_0_91~319 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=484d7793e0b26907193d4742190740859fe244dc;p=php Fixed a number of compile warnings. --- diff --git a/ext/ncurses/ncurses_functions.c b/ext/ncurses/ncurses_functions.c index b35e6257dc..bd44375575 100644 --- a/ext/ncurses/ncurses_functions.c +++ b/ext/ncurses/ncurses_functions.c @@ -25,7 +25,7 @@ #include "php_ini.h" #include "php_ncurses.h" -#define FETCH_WINRES(r, z) ZEND_FETCH_RESOURCE(r, WINDOW *, z, -1, "ncurses_handle", le_ncurses); \ +#define FETCH_WINRES(r, z) ZEND_FETCH_RESOURCE((void**)r, WINDOW *, z, -1, "ncurses_handle", le_ncurses); \ if(!r) RETURN_FALSE; @@ -1547,9 +1547,8 @@ PHP_FUNCTION(ncurses_ungetmouse) PHP_FUNCTION(ncurses_mouse_trafo) { zval **x, **y, **toscreen; - ulong nx, ny, retval; + int nx, ny, retval; - WINDOW **win; if (ZEND_NUM_ARGS() != 3 || zend_get_parameters_ex(3, &y, &x, &toscreen) == FAILURE){ WRONG_PARAM_COUNT; } @@ -1575,7 +1574,7 @@ PHP_FUNCTION(ncurses_mouse_trafo) PHP_FUNCTION(ncurses_wmouse_trafo) { zval **handle, **x, **y, **toscreen; - ulong nx, ny, retval; + int nx, ny, retval; WINDOW **win; if (ZEND_NUM_ARGS() != 4 || zend_get_parameters_ex(4, &y, &x, &toscreen) == FAILURE){ @@ -1643,7 +1642,7 @@ PHP_FUNCTION(ncurses_keypad) Sets windows color pairings */ PHP_FUNCTION(ncurses_wcolor_set) { - zval **handle, **color_pair, **opts; + zval **handle, **color_pair; WINDOW **win; #ifdef HAVE_NCURSES_COLOR_SET