diff options
-rw-r--r-- | ext/ming/ming.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/ming/ming.c b/ext/ming/ming.c index d5414a992e..c823ca450a 100644 --- a/ext/ming/ming.c +++ b/ext/ming/ming.c @@ -1395,7 +1395,7 @@ PHP_METHOD(swfbutton, addAction) PHP_FUNCTION(ming_keypress) { char *key; - long key_len; + int key_len; char c; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &key, &key_len) == FAILURE) { @@ -4301,7 +4301,7 @@ PHP_METHOD(swfmovie, importChar) SWFCharacter character; int ret; char *libswf, *name; - long libswf_len, name_len; + int libswf_len, name_len; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &libswf, &libswf_len, &name, &name_len) == FAILURE) { return; @@ -4378,7 +4378,7 @@ PHP_METHOD(swfmovie, addFont) PHP_METHOD(swfmovie, replace) { SWFMovie movie; - zval *zitem, **zblock; + zval *zitem, *zblock; SWFDisplayItem item; SWFBlock block; SWFMovieBlockType ublock; |