From 6b46ded6a5e3cf8ff33cf9c02a19bf84473e4ffb Mon Sep 17 00:00:00 2001 From: TangoCash Date: Fri, 29 Mar 2019 18:15:29 +0100 Subject: [PATCH] fix typo --- src/driver/lcd4l.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/lcd4l.cpp b/src/driver/lcd4l.cpp index 37e8531c3..e92badb74 100644 --- a/src/driver/lcd4l.cpp +++ b/src/driver/lcd4l.cpp @@ -1073,7 +1073,7 @@ void CLCD4l::ParseInfo(uint64_t parseID, bool newID, bool firstRun) std::string wtimestamp = to_string((int)CWeather::getInstance()->getCurrentTimestamp()); for (int i = 0; i < forecast; i++) // 0 is current day { - wtimestamp += "\n" + CWeather::getInstance()->getForecastWeekday(i); + wtimestamp += "\n" + to_string(CWeather::getInstance()->getForecastWeekday(i)); } if (m_wtimestamp.compare(wtimestamp)) {