Whitespace around operators

This commit is contained in:
Benny Baumann
2021-07-14 19:18:27 +02:00
committed by BenBE
parent 458749df45
commit 0d85af2872
12 changed files with 34 additions and 34 deletions

View File

@ -376,7 +376,7 @@ static const char* const* LEDMeterMode_digits;
static void LEDMeterMode_drawDigit(int x, int y, int n) {
for (int i = 0; i < 3; i++)
mvaddstr(y+i, x, LEDMeterMode_digits[i * 10 + n]);
mvaddstr(y + i, x, LEDMeterMode_digits[i * 10 + n]);
}
static void LEDMeterMode_draw(Meter* this, int x, int y, ATTR_UNUSED int w) {