Fix for #7606: ESP_LOGI typo

This commit is contained in:
gojimmypi
2024-05-31 15:33:46 -07:00
parent 5657d88ddb
commit 4d2ce1131a

View File

@ -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) {