iliaa Wed Apr 13 19:05:31 2005 EDT
Modified files:
/php-src/ext/calendar calendar.c
Log:
Removed unused vars.
http://cvs.php.net/diff.php/php-src/ext/calendar/calendar.c?r1=1.44&r2=1.45&ty=u
Index: php-src/ext/calendar/calendar.c
diff -u php-src/ext/calendar/calendar.c:1.44
php-src/ext/calendar/calendar.c:1.45
--- php-src/ext/calendar/calendar.c:1.44 Sun Apr 10 16:57:31 2005
+++ php-src/ext/calendar/calendar.c Wed Apr 13 19:05:23 2005
@@ -18,7 +18,7 @@
| Wez Furlong <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: calendar.c,v 1.44 2005/04/10 20:57:31 andrey Exp $ */
+/* $Id: calendar.c,v 1.45 2005/04/13 23:05:23 iliaa Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -379,7 +379,6 @@
PHP_FUNCTION(juliantojd)
{
long year, month, day;
- int jdate;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month,
&day, &year) == FAILURE) {
RETURN_FALSE;
@@ -561,7 +560,6 @@
PHP_FUNCTION(frenchtojd)
{
long year, month, day;
- int jdate;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month,
&day, &year) == FAILURE) {
RETURN_FALSE;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php