diff options
author | Mattias Andrée <maandree@kth.se> | 2024-01-10 21:37:19 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-01-10 21:37:45 +0100 |
commit | 5386671eec7de485801b747b91e77828d20fa03f (patch) | |
tree | 65afad076775da2bbc428f4e3c9bea0f3b0693bd | |
parent | Update VERSION_MINOR (diff) | |
download | libsimple-1.5.tar.gz libsimple-1.5.tar.bz2 libsimple-1.5.tar.xz |
Fix return value for libsimple_{local,gm}time.c1.5
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | gmtime.c | 1 | ||||
-rw-r--r-- | localtime.c | 1 |
3 files changed, 1 insertions, 3 deletions
@@ -1,6 +1,6 @@ ISC License -© 2017, 2018, 2021, 2022, 2023 Mattias Andrée <maandree@kth.se> +© 2017, 2018, 2021, 2022, 2023, 2024 Mattias Andrée <maandree@kth.se> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -26,7 +26,6 @@ libsimple_gmtime(struct tm *tm, struct timespec *ts) if (!gmtime_r(&timex.time.tv_sec, tm)) return -1; tm->tm_sec += 1; - return 1; } else if (r == TIME_DEL) { timex.time.tv_sec += 1; if (!gmtime_r(&timex.time.tv_sec, tm)) diff --git a/localtime.c b/localtime.c index 96bd1e1..dd4acc2 100644 --- a/localtime.c +++ b/localtime.c @@ -26,7 +26,6 @@ libsimple_localtime(struct tm *tm, struct timespec *ts) if (!localtime_r(&timex.time.tv_sec, tm)) return -1; tm->tm_sec += 1; - return 1; } else if (r == TIME_DEL) { timex.time.tv_sec += 1; if (!localtime_r(&timex.time.tv_sec, tm)) |