Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-21 06:16:00 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-21 06:16:00 +0400
commitbc3e9479c2e3ebc7e557d530e898f60f95612d54 (patch)
treeaa49b1bb9c0817fe8a0daa74de2e419bbbc586c5 /editors
parent46a0be5304fb44e07e5066540f8e4061a3ecc438 (diff)
awk: fix typo in prev commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors')
-rw-r--r--editors/awk.c2
1 files changed, 1 insertions, 1 deletions
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);
}