1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-15 20:35:14 +03:00

Warning removed

This commit is contained in:
Bertrand Songis 2019-11-15 14:03:05 +01:00
parent e6a00e50d0
commit 86b186fafd
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -454,7 +454,6 @@ char * strAppendUnsigned(char * dest, uint32_t value, uint8_t digits, uint8_t ra
uint8_t idx = digits;
while (idx > 0) {
div_t qr = div(value, radix);
uint32_t rem = value % radix;
dest[--idx] = (qr.rem >= 10 ? 'A' - 10 : '0') + qr.rem;
value = qr.quot;
}