awk: fix typo in prev commit

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
1_16_stable
Denys Vlasenko 2009-09-21 04:16:00 +02:00
parent 46a0be5304
commit bc3e9479c2
1 changed files with 1 additions and 1 deletions

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