projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46a0be5
)
awk: fix typo in prev commit
author
Denys Vlasenko
<vda.linux@googlemail.com>
Mon, 21 Sep 2009 02:16:00 +0000
(
04:16
+0200)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Mon, 21 Sep 2009 02:16:00 +0000
(
04:16
+0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
editors/awk.c
patch
|
blob
|
history
diff --git
a/editors/awk.c
b/editors/awk.c
index aa2fd484c82881e6e1dfd08fdecb872910a0bea4..d15dbb3e5dedc8a6e659fd8373cdf82065366561 100644
(file)
--- 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);
}