Skip to content

Commit

Permalink
Correct some debug message typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kamotswind committed Jul 8, 2018
1 parent 08b776e commit 544db59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions odroid-go-common/components/odroid/odroid_settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ int32_t odroid_settings_DataSlot_get()
err = nvs_get_i32(my_handle, NvsKey_DataSlot, &result);
if (err == ESP_OK)
{
printf("odroid_settings_AppSlot_get: value=%d\n", result);
printf("odroid_settings_DataSlot_get: value=%d\n", result);
}


Expand Down Expand Up @@ -335,7 +335,7 @@ int32_t odroid_settings_Backlight_get()
err = nvs_get_i32(my_handle, NvsKey_Backlight, &result);
if (err == ESP_OK)
{
printf("odroid_settings_Volume_get: value=%d\n", result);
printf("odroid_settings_Backlight_get: value=%d\n", result);
}

// Close
Expand Down

0 comments on commit 544db59

Please sign in to comment.