mirror of https://github.com/ARMmbed/mbed-os.git
TARGET_MCU_NRF51822 - Fix comparison between signed and unsigned integer.
parent
defa15b1bf
commit
85a7d6d39f
|
@ -111,7 +111,7 @@ void sdk_mapped_flags_bulk_update_by_key(uint16_t * p_keys,
|
||||||
{
|
{
|
||||||
if (p_keys[i] == key)
|
if (p_keys[i] == key)
|
||||||
{
|
{
|
||||||
for (int j = 0; j < n_flag_collections; j++)
|
for (uint32_t j = 0; j < n_flag_collections; j++)
|
||||||
{
|
{
|
||||||
if (value)
|
if (value)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue