awk: fix typo in prev commit

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2009-09-21 04:16:00 +02:00
parent 46a0be5304
commit bc3e9479c2

View 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);
}