lcdd: remove useless cast

This commit is contained in:
Stefan Seyfried
2015-02-10 14:44:23 +01:00
parent 370e9d9e27
commit 7fad56623f

View File

@@ -646,7 +646,7 @@ void CLCD::showTime(bool)
}
else
{
strftime((char*) &timestr, 20, "%H:%M", t);
strftime(timestr, 20, "%H:%M", t);
clearClock = 1;
}