helly Sun Aug 10 16:39:18 2003 EDT Modified files: /php-src/ext/ming ming.c Log: Nuke unused vars Index: php-src/ext/ming/ming.c diff -u php-src/ext/ming/ming.c:1.52 php-src/ext/ming/ming.c:1.53 --- php-src/ext/ming/ming.c:1.52 Fri Jul 11 03:48:11 2003 +++ php-src/ext/ming/ming.c Sun Aug 10 16:39:18 2003 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: ming.c,v 1.52 2003/07/11 07:48:11 sniper Exp $ */ +/* $Id: ming.c,v 1.53 2003/08/10 20:39:18 helly Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -1440,8 +1440,6 @@ PHP_FUNCTION(swfmovie_output) { - zval **zlimit = NULL; - int limit = -1; SWFMovie movie = getMovie(getThis() TSRMLS_CC); #ifdef HAVE_MING_ZLIB @@ -1478,8 +1476,6 @@ PHP_FUNCTION(swfmovie_saveToFile) { zval **x; - zval **zlimit = NULL; - int limit = -1; SWFMovie movie = getMovie(getThis() TSRMLS_CC); php_stream *what; @@ -1517,8 +1513,7 @@ Saves the movie. 'where' can be stream and the movie will be saved there otherwise it is treated as string and written in file with that name */ PHP_FUNCTION(swfmovie_save) { - zval **x, **zlimit = NULL; - int limit = -1; + zval **x; long retval; php_stream *stream;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php