mirror of
https://github.com/EdgeTX/edgetx.git
synced 2025-07-15 20:35:14 +03:00
Warning removed
This commit is contained in:
parent
e6a00e50d0
commit
86b186fafd
1 changed files with 0 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue