Drop redundant cast to same type

This commit is contained in:
Christian Göttsche 2020-10-06 11:40:24 +02:00 committed by cgzones
parent db159e7580
commit 3653ee35c5
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ static void LoadMeter_updateValues(Meter* this, char* buffer, int size) {
static void LoadMeter_display(Object* cast, RichString* out) {
Meter* this = (Meter*)cast;
char buffer[20];
xSnprintf(buffer, sizeof(buffer), "%.2f ", ((Meter*)this)->values[0]);
xSnprintf(buffer, sizeof(buffer), "%.2f ", this->values[0]);
RichString_write(out, CRT_colors[LOAD], buffer);
}