Skip to content

Commit 4d2ce11

Browse files
author
gojimmypi
committed
Fix for #7606: ESP_LOGI typo
1 parent 5657d88 commit 4d2ce11

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wolfcrypt/src/port/Espressif/esp32_sha.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,9 +1520,9 @@ int esp_sha_hw_unlock(WC_ESP32SHA* ctx)
15201520
}
15211521

15221522
#if defined(ESP_MONITOR_HW_TASK_LOCK) && defined(WOLFSSL_ESP32_HW_LOCK_DEBUG)
1523-
SP_LOGI(TAG, "3) esp_sha_hw_unlock Lock depth @ %d = %d "
1523+
ESP_LOGI(TAG, "3) esp_sha_hw_unlock Lock depth @ %d = %d "
15241524
"for WC_ESP32SHA @ %0x\n",
1525-
__LINE__, ctx->lockDepth, (unsigned)ctx);
1525+
__LINE__, ctx->lockDepth, (uintptr_t)ctx);
15261526
#endif
15271527

15281528
if (0 != ctx->lockDepth) {

0 commit comments

Comments
 (0)