Skip to content

Commit

Permalink
fix: Typo in sdmmc_init_sd_ssr log string
Browse files Browse the repository at this point in the history
  • Loading branch information
adokitkat committed May 28, 2024
1 parent e3a54fa commit a97aaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/sdmmc/sdmmc_sd.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ esp_err_t sdmmc_init_sd_ssr(sdmmc_card_t* card)

err = sdmmc_decode_ssr(sd_ssr, &card->ssr);
if (err != ESP_OK) {
ESP_LOGE(TAG, "%s: error sdmmc_decode_scr returned 0x%x", __func__, err);
ESP_LOGE(TAG, "%s: error sdmmc_decode_ssr returned 0x%x", __func__, err);
}
free(sd_ssr);
return err;
Expand Down

0 comments on commit a97aaf1

Please sign in to comment.