diff options
| author | Chris Webb <chris@arachsys.com> | 2023-12-10 08:50:09 +0000 |
|---|---|---|
| committer | Chris Webb <chris@arachsys.com> | 2023-12-10 11:09:55 +0000 |
| commit | a8d5b8bd2c8846bc996aed70434a4f0c488c1cc6 (patch) | |
| tree | 85f240825b14de0030e5ebfdcd28de7d0e255191 /src/terminal_ui.cc | |
| parent | 7f49395cf931b2af8a75ffb5319a8aa8c395ed8d (diff) | |
Fix compiler warnings when char is unsigned
In several places, we check for a control character with something like
char c;
[...]
if (c >= 0 and c <= 0x1F)
[...]
When char is signed (e.g. amd64) this is fine, but when char is unsigned
by default (e.g. arm32 and arm64) this generates warnings about the
tautologous check that an unsigned value is non-negative.
Write as
if ((unsigned char) c <= 0x1F)
[...]
which is both correct and not suspicious under both conventions.
Diffstat (limited to 'src/terminal_ui.cc')
| -rw-r--r-- | src/terminal_ui.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/terminal_ui.cc b/src/terminal_ui.cc index 62df5aa7..db967976 100644 --- a/src/terminal_ui.cc +++ b/src/terminal_ui.cc @@ -30,8 +30,8 @@ static String fix_atom_text(StringView str) auto pos = str.begin(); for (auto it = str.begin(), end = str.end(); it != end; ++it) { - char c = *it; - if (c >= 0 and c <= 0x1F) + unsigned char c = *it; + if (c <= 0x1F) { res += StringView{pos, it}; res += String{Codepoint{(uint32_t)(0x2400 + c)}}; |
