1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

fix(qrcodegen) add brackets around assert calls (#2897)

Add brackets to fix build errors on platforms which define assert as an empty macro.
This commit is contained in:
Bartosz Gołaszewski 2021-12-14 14:34:59 +01:00 committed by GitHub
parent cb7fc2bb59
commit 050ee4848f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -948,9 +948,9 @@ struct qrcodegen_Segment qrcodegen_makeEci(long assignVal, uint8_t buf[]) {
result.mode = qrcodegen_Mode_ECI;
result.numChars = 0;
result.bitLength = 0;
if (assignVal < 0)
if (assignVal < 0) {
assert(false);
else if (assignVal < (1 << 7)) {
} else if (assignVal < (1 << 7)) {
memset(buf, 0, 1 * sizeof(buf[0]));
appendBitsToBuffer(assignVal, 8, buf, &result.bitLength);
} else if (assignVal < (1 << 14)) {
@ -962,8 +962,9 @@ struct qrcodegen_Segment qrcodegen_makeEci(long assignVal, uint8_t buf[]) {
appendBitsToBuffer(6, 3, buf, &result.bitLength);
appendBitsToBuffer(assignVal >> 10, 11, buf, &result.bitLength);
appendBitsToBuffer(assignVal & 0x3FF, 10, buf, &result.bitLength);
} else
} else {
assert(false);
}
result.data = buf;
return result;
}