Nimble: Fixed compilation issues in nimble examples after removing "-Wno-format" option

This commit is contained in:
Rahul Tank
2022-12-07 15:23:10 +05:30
parent 81932a273a
commit 00ce75784a
10 changed files with 9 additions and 14 deletions

View File

@@ -361,7 +361,7 @@ static const struct bt_mesh_comp comp = {
static int output_number(bt_mesh_output_action_t action, uint32_t number)
{
ESP_LOGI(tag, "OOB Number: %u\n", number);
ESP_LOGI(tag, "OOB Number: %" PRIu32 "\n", number);
return 0;
}