summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorConfuSomu2021-05-29 21:08:10 -0400
committerConfuSomu2021-05-29 21:08:10 -0400
commit09c1b5bbffa55bb0a7b42b32d4d220d28c3036c8 (patch)
tree2bc1d869403c7d27e5d8ee02dcf89510e10610d6 /apps
parentd8540146e5f5bbbf4995c16740095973d03e4ca9 (diff)
downloadpico-watch-app-settings.tar
pico-watch-app-settings.tar.gz
pico-watch-app-settings.zip
Remove uneeded return statementapp-settings
It is uneeded because of falling to the next case present in switch statements.
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/settings/main.cpp b/apps/settings/main.cpp
index b5df223..5472adf 100644
--- a/apps/settings/main.cpp
+++ b/apps/settings/main.cpp
@@ -80,7 +80,6 @@ namespace app_settings {
break;
case 7: // Apply and exit
app_api->datetime_set(&datetime);
- return;
case 8: // Quit without saving
return;
}