From 00869359a2929975ef1b6646a8818f56bfb08afe Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 29 Aug 1999 12:28:56 +0000 Subject: [PATCH] (get_date): Rename outermost local `probe' to `quarter'. --- lib/getdate.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/getdate.y b/lib/getdate.y index 2628974052..b95f5641cf 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -876,10 +876,10 @@ get_date (const char *p, const time_t *now) /* Probe the names used in the next three calendar quarters, looking for a tm_isdst different from the one we already have. */ { - int probe; - for (probe = 1; probe <= 3; probe++) + int quarter; + for (quarter = 1; quarter <= 3; quarter++) { - time_t probe = Start + probe * (90 * 24 * 60 * 60); + time_t probe = Start + quarter * (90 * 24 * 60 * 60); struct tm *tm = localtime (&probe); if (tm && tm->tm_zone && tm->tm_isdst != pc.local_time_zone_table[0].value) -- 2.30.2