diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-04-13 23:05:23 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-04-13 23:05:23 +0000 |
commit | fc51ec9e1258f935f42841153779111458d9484e (patch) | |
tree | a1fead6d1c7240d83a8922e91cc071300126e4dd /ext/calendar | |
parent | 2c511712f77f729000f8f58ff7d0f5c3661c5346 (diff) | |
download | php-git-fc51ec9e1258f935f42841153779111458d9484e.tar.gz |
Removed unused vars.
Diffstat (limited to 'ext/calendar')
-rw-r--r-- | ext/calendar/calendar.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/calendar/calendar.c b/ext/calendar/calendar.c index 021f033490..6004b8d4ad 100644 --- a/ext/calendar/calendar.c +++ b/ext/calendar/calendar.c @@ -379,7 +379,6 @@ PHP_FUNCTION(jdtojulian) 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(jdtofrench) 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; |