mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
Merge pull request #7607 from gojimmypi/PR-fix-7606
Fix for #7606: ESP_LOGI typo in esp32_sha.c
This commit is contained in:
@ -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)
|
#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",
|
"for WC_ESP32SHA @ %0x\n",
|
||||||
__LINE__, ctx->lockDepth, (unsigned)ctx);
|
__LINE__, ctx->lockDepth, (uintptr_t)ctx);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (0 != ctx->lockDepth) {
|
if (0 != ctx->lockDepth) {
|
||||||
|
Reference in New Issue
Block a user