From 4d2ce1131a3b021dd0a400f020b7c4f9bc65dcd7 Mon Sep 17 00:00:00 2001 From: gojimmypi Date: Fri, 31 May 2024 15:33:46 -0700 Subject: [PATCH] Fix for #7606: ESP_LOGI typo --- wolfcrypt/src/port/Espressif/esp32_sha.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfcrypt/src/port/Espressif/esp32_sha.c b/wolfcrypt/src/port/Espressif/esp32_sha.c index 684a47374..bef77b09e 100644 --- a/wolfcrypt/src/port/Espressif/esp32_sha.c +++ b/wolfcrypt/src/port/Espressif/esp32_sha.c @@ -1520,9 +1520,9 @@ int esp_sha_hw_unlock(WC_ESP32SHA* ctx) } #if defined(ESP_MONITOR_HW_TASK_LOCK) && defined(WOLFSSL_ESP32_HW_LOCK_DEBUG) - SP_LOGI(TAG, "3) esp_sha_hw_unlock Lock depth @ %d = %d " + ESP_LOGI(TAG, "3) esp_sha_hw_unlock Lock depth @ %d = %d " "for WC_ESP32SHA @ %0x\n", - __LINE__, ctx->lockDepth, (unsigned)ctx); + __LINE__, ctx->lockDepth, (uintptr_t)ctx); #endif if (0 != ctx->lockDepth) {