protocols/security: Remove -Wno-format compile option for examples

This commit is contained in:
Laukik Hase
2022-12-07 13:01:43 +05:30
parent 2e3c72a5d1
commit 184c09ea81
10 changed files with 13 additions and 14 deletions

View File

@@ -13,6 +13,7 @@
*/
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_wifi.h"
@@ -243,7 +244,7 @@ static void https_get_task(void *pvParameters)
static int request_count;
ESP_LOGI(TAG, "Completed %d requests", ++request_count);
printf("Minimum free heap size: %d bytes\n", esp_get_minimum_free_heap_size());
printf("Minimum free heap size: %" PRIu32 " bytes\n", esp_get_minimum_free_heap_size());
for(int countdown = 10; countdown >= 0; countdown--) {
ESP_LOGI(TAG, "%d...", countdown);