diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-08-22 12:15:20 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-08-22 12:15:20 +0000 |
commit | 484d7793e0b26907193d4742190740859fe244dc (patch) | |
tree | 385da3ac5f984b08a28b06827740da84886e07c8 /ext/ncurses/ncurses_functions.c | |
parent | 28970b92606b401b83cd2dc97b98b899c3e97f29 (diff) | |
download | php-git-484d7793e0b26907193d4742190740859fe244dc.tar.gz |
Fixed a number of compile warnings.
Diffstat (limited to 'ext/ncurses/ncurses_functions.c')
-rw-r--r-- | ext/ncurses/ncurses_functions.c | 9 |
1 files changed, 4 insertions, 5 deletions
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 |