From 6b46e8ae57701f5b869651e920d0717443ab6e01 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sun, 1 Nov 2020 21:44:30 +0100 Subject: cleanup: const-ify utc_mktime() To make it clear that the struct tm is only used as an input parameter. Signed-off-by: Berthold Stoeger --- core/subsurface-time.h | 2 +- core/time.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/subsurface-time.h b/core/subsurface-time.h index 828a8ef02..097aa5215 100644 --- a/core/subsurface-time.h +++ b/core/subsurface-time.h @@ -9,7 +9,7 @@ extern "C" { #endif -extern timestamp_t utc_mktime(struct tm *tm); +extern timestamp_t utc_mktime(const struct tm *tm); extern void utc_mkdate(timestamp_t, struct tm *tm); extern int utc_year(timestamp_t timestamp); extern int utc_weekday(timestamp_t timestamp); diff --git a/core/time.c b/core/time.c index 861d7b1d5..0dd47856b 100644 --- a/core/time.c +++ b/core/time.c @@ -99,7 +99,7 @@ void utc_mkdate(timestamp_t timestamp, struct tm *tm) tm->tm_mon = m; } -timestamp_t utc_mktime(struct tm *tm) +timestamp_t utc_mktime(const struct tm *tm) { static const int mdays[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 -- cgit v1.2.3-70-g09d2