Commit d01bff4e authored by Eric Duminil's avatar Eric Duminil
Browse files

Fix casting bug

parent 545ad2fd
Pipeline #5757 passed with stage
in 1 minute and 58 seconds
......@@ -251,7 +251,7 @@ void NTPClient::getFormattedDate(char *formatted_date, unsigned long secs) {
char formatted_time[9];
this->getFormattedTime(formatted_time, secs);
snprintf(formatted_date, 23, "%4d-%02d-%02lu %s%+03d", year, month, rawTime, formatted_time, (int8_t) this->_timeOffset / 3600);
snprintf(formatted_date, 23, "%4d-%02d-%02lu %s%+03d", year, month, rawTime, formatted_time, (int8_t) (this->_timeOffset / 3600));
}
void NTPClient::setEpochTime(unsigned long secs) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment