From: Denys Vlasenko Date: Mon, 21 Sep 2009 02:16:00 +0000 (+0200) Subject: awk: fix typo in prev commit X-Git-Tag: 1_16_0~474 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bc3e9479c2e3ebc7e557d530e898f60f95612d54;p=oweals%2Fbusybox.git awk: fix typo in prev commit Signed-off-by: Denys Vlasenko --- diff --git a/editors/awk.c b/editors/awk.c index aa2fd484c..d15dbb3e5 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -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); }