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