From 179646d1c12d93202afad0bf84490778283ec2e8 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Thu, 16 Feb 2023 08:50:19 +0100 Subject: Fix compiler warnings minimizing use of deprecated API where possible. --- src/timelog.cc | 2 +- src/utils.cc | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/timelog.cc b/src/timelog.cc index 67791bd1..99c2dd36 100644 --- a/src/timelog.cc +++ b/src/timelog.cc @@ -55,7 +55,7 @@ namespace { curr->append_note(in_event.note.c_str(), *context.scope); char buf[32]; - std::sprintf(buf, "%lds", long((out_event.checkin - in_event.checkin) + std::snprintf(buf, 32, "%lds", long((out_event.checkin - in_event.checkin) .total_seconds())); amount_t amt; amt.parse(buf); diff --git a/src/utils.cc b/src/utils.cc index e6147f09..1d457891 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -849,7 +849,11 @@ path resolve_path(const path& pathname) path temp = pathname; if (temp.string()[0] == '~') temp = expand_path(temp); +#if (BOOST_VERSION >= 106000) + temp.lexically_normal(); +#else temp.normalize(); +#endif return temp; } -- cgit v1.2.3