awk: fix typo in prev commit
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 21 Sep 2009 02:16:00 +0000 (04:16 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 21 Sep 2009 02:16:00 +0000 (04:16 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
editors/awk.c

index aa2fd48..d15dbb3 100644 (file)
@@ -2024,7 +2024,7 @@ static NOINLINE int do_mktime(const char *ds)
        }
 
        then.tm_mon -= 1;
-       then.tm_year -= 1900;
+       then.tm_year -= 1900;
 
        return mktime(&then);
 }