aboutsummaryrefslogtreecommitdiff
path: root/time/asctime.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/asctime.c')
-rw-r--r--time/asctime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time/asctime.c b/time/asctime.c
index d067103..7e2b102 100644
--- a/time/asctime.c
+++ b/time/asctime.c
@@ -41,7 +41,7 @@ asctime_internal (const struct tm *tp, char *buf, size_t buflen)
/* We limit the size of the year which can be printed. Using the %d
format specifier used the addition of 1900 would overflow the
- number and a negative vaue is printed. For some architectures we
+ number and a negative value is printed. For some architectures we
could in theory use %ld or an evern larger integer format but
this would mean the output needs more space. This would not be a
problem if the 'asctime_r' interface would be defined sanely and