diff options
Diffstat (limited to 'Src/Modules/datetime.c')
-rw-r--r-- | Src/Modules/datetime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/datetime.c b/Src/Modules/datetime.c index cb85b8e09..d90791620 100644 --- a/Src/Modules/datetime.c +++ b/Src/Modules/datetime.c @@ -48,7 +48,7 @@ bin_strftime(char *nam, char **argv, Options ops, int func) } secs = (time_t)strtoul(argv[1], &endptr, 10); - if (secs == ULONG_MAX) { + if (secs == (time_t)ULONG_MAX) { zwarnnam(nam, "%s: %e", argv[1], errno); return 1; } else if (*endptr != '\0') { |