summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2021-01-27 13:07:45 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2021-01-27 15:24:02 +0100
commit645ef7420056796e6d2716bf920b8704451912ac (patch)
tree17f7ad1a29673a5c5a0feaad33ee061c59626c42 /util.c
parent2f8a83288d91ea0abc2e4ebd6754513ee3ad37ec (diff)
typofixes
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 0dc79c7..362fdd9 100644
--- a/util.c
+++ b/util.c
@@ -204,7 +204,7 @@ strtotime(const char *s, time_t *t)
if (errno || *s == '\0' || *e)
return -1;
/* NOTE: assumes time_t is 64-bit on 64-bit platforms:
- long long (atleast 32-bit) to time_t. */
+ long long (at least 32-bit) to time_t. */
if (t)
*t = (time_t)l;