ref: 45fb8940af5c82d41a131c2c1e4cc9e92c9fe6c3
parent: 12c633a64af3e5a95406b71d7bc6633b4ee3c158
author: Gabriel Ravier <gabravier@gmail.com>
date: Tue May 14 04:24:52 EDT 2019
Correct style in Font.cpp Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
--- a/src/Font.cpp
+++ b/src/Font.cpp
@@ -1655,8 +1655,7 @@
unsigned long charcode;
unsigned int zero_bit = 0;
- for (unsigned char lead_byte = string[0]; zero_bit < 5 && (lead_byte & 0x80); ++zero_bit, lead_byte <<= 1)
- ;
+ for (unsigned char lead_byte = string[0]; zero_bit < 5 && (lead_byte & 0x80); ++zero_bit, lead_byte <<= 1);
switch (zero_bit)
{