diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-21 04:16:00 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-21 04:16:00 +0200 |
commit | bc3e9479c2e3ebc7e557d530e898f60f95612d54 (patch) | |
tree | aa49b1bb9c0817fe8a0daa74de2e419bbbc586c5 | |
parent | 46a0be5304fb44e07e5066540f8e4061a3ecc438 (diff) | |
download | busybox-w32-bc3e9479c2e3ebc7e557d530e898f60f95612d54.tar.gz busybox-w32-bc3e9479c2e3ebc7e557d530e898f60f95612d54.tar.bz2 busybox-w32-bc3e9479c2e3ebc7e557d530e898f60f95612d54.zip |
awk: fix typo in prev commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | editors/awk.c | 2 |
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) | |||
2024 | } | 2024 | } |
2025 | 2025 | ||
2026 | then.tm_mon -= 1; | 2026 | then.tm_mon -= 1; |
2027 | then.tm_year -= - 1900; | 2027 | then.tm_year -= 1900; |
2028 | 2028 | ||
2029 | return mktime(&then); | 2029 | return mktime(&then); |
2030 | } | 2030 | } |