Fix uneeded negative test because type is uint ( warning: comparison is always false due to limited range of data type)

This commit is contained in:
GullCode 2022-04-18 22:33:10 +02:00
parent 17aa58bbf8
commit 5cdaac6b82

View File

@ -857,7 +857,7 @@ int8_t qrcode_initText(QRCode *qrcode, uint8_t *modules, uint8_t version, uint8_
}
bool qrcode_getModule(QRCode *qrcode, uint8_t x, uint8_t y) {
if (x < 0 || x >= qrcode->size || y < 0 || y >= qrcode->size) {
if ( x >= qrcode->size || y >= qrcode->size) {
return false;
}