From 70e338e285546b70623aed279d451edb73d9a57d Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Tue, 4 Aug 2009 21:11:35 +0000 Subject: [PATCH] Fix compiler warnings in ext/date --- ext/date/php_date.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 3c7e490951..588b04bd92 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -3393,7 +3393,7 @@ PHP_FUNCTION(timezone_transitions_get) { zval *object, *element; php_timezone_obj *tzobj; - int i, begin = 0, found; + unsigned int i, begin = 0, found; long timestamp_begin = LONG_MIN, timestamp_end = LONG_MAX; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|ll", &object, date_ce_timezone, ×tamp_begin, ×tamp_end) == FAILURE) { -- 2.50.1