diff --git a/lib/mu-config.hh b/lib/mu-config.hh index c7fd1020..c405edf7 100644 --- a/lib/mu-config.hh +++ b/lib/mu-config.hh @@ -254,7 +254,7 @@ public: return static_cast(str.empty() ? false : std::atol(str.c_str()) != 0); else if constexpr (type == Type::Timestamp) - return static_cast(str.empty() ? 0 : std::atoll(str.c_str())); + return static_cast(str.empty() ? 0 : std::atoll(str.c_str())); else if constexpr (type == Type::Path || type == Type::String) return str; else if constexpr (type == Type::StringList)