From 09c1b5bbffa55bb0a7b42b32d4d220d28c3036c8 Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Sat, 29 May 2021 21:08:10 -0400 Subject: Remove uneeded return statement It is uneeded because of falling to the next case present in switch statements. --- apps/settings/main.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'apps') 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; } -- cgit v1.2.3-54-g00ecf