Commit 67095fcf authored by Eric Duminil's avatar Eric Duminil
Browse files

Removing stupid snprintf warnings

parent d01bff4e
Pipeline #5758 passed with stage
in 1 minute and 49 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%+03ld", year, month, rawTime, formatted_time, (this->_timeOffset / 3600) % 100);
}
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