summaryrefslogtreecommitdiff
path: root/rc/tools/python
diff options
context:
space:
mode:
authorChris Webb <chris@arachsys.com>2023-12-10 08:50:09 +0000
committerChris Webb <chris@arachsys.com>2023-12-10 11:09:55 +0000
commita8d5b8bd2c8846bc996aed70434a4f0c488c1cc6 (patch)
tree85f240825b14de0030e5ebfdcd28de7d0e255191 /rc/tools/python
parent7f49395cf931b2af8a75ffb5319a8aa8c395ed8d (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 'rc/tools/python')
0 files changed, 0 insertions, 0 deletions