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
@@ -423,7 +423,7 @@ static void example_event_callback(esp_blufi_cb_event_t event, esp_blufi_cb_para
break;
}
case ESP_BLUFI_EVENT_RECV_CUSTOM_DATA:
BLUFI_INFO("Recv Custom Data %d\n", param->custom_data.data_len);
BLUFI_INFO("Recv Custom Data %" PRIu32 "\n", param->custom_data.data_len);
esp_log_buffer_hex("Custom Data", param->custom_data.data, param->custom_data.data_len);
break;
case ESP_BLUFI_EVENT_RECV_USERNAME: