From 9547e64f0f25bb9f50cac9ba9dc035fbc051d4c2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 8 Feb 2016 17:55:24 +0300 Subject: Change timeToStr function parameter type from int to uint32_t. --- src/utils/stringutils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils/stringutils.cpp') diff --git a/src/utils/stringutils.cpp b/src/utils/stringutils.cpp index ba6e46ee0..041003988 100644 --- a/src/utils/stringutils.cpp +++ b/src/utils/stringutils.cpp @@ -909,10 +909,10 @@ std::string removeToken(std::string &str, const std::string &token) return str; } -std::string timeToStr(const int time) +std::string timeToStr(const uint32_t time) { char buf[101]; - const long tempTime = static_cast(time); + const uint64_t tempTime = static_cast(time); tm *const timeInfo = localtime(reinterpret_cast(&tempTime)); if (strftime(&buf[0], 100, "%Y-%m-%d_%H-%M-%S", timeInfo)) return std::string(buf); -- cgit v1.2.3-70-g09d2