From edff113eb91c7b01e5ff916ef326624cda1a383a Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 2 Jul 2009 15:42:18 +0000 Subject: suppress a warning. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time.c b/time.c index 905c151b4..a21af1926 100644 --- a/time.c +++ b/time.c @@ -1878,7 +1878,7 @@ find_time_t(struct tm *tptr, int utc_p, time_t *tp) int find_dst; struct tm result; int try_interpolation; - unsigned long range; + unsigned long range = 0; #ifdef FIND_TIME_NUMGUESS #define GUESS(p) (find_time_numguess++, (utc_p ? gmtime_with_leapsecond(p, &result) : LOCALTIME(p, result))) -- cgit