diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2022-08-11 06:25:01 +0200 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2022-08-19 00:29:17 -0400 |
commit | c1c0318c8dcb8ac0228ac6b93cc801bae65eacf0 (patch) | |
tree | 15ff493863441ad987dcc6b914e78df08e445cd9 | |
parent | 5e757b4d6e6531ddd8f1f819525dbbacdb8e994f (diff) | |
download | rockbox-c1c0318c8d.tar.gz rockbox-c1c0318c8d.zip |
Playlist Viewer: Fix unintentional fallthrough
Change-Id: Iead5635e0e7f20dc556f26f735fd47597c9169b6
-rw-r--r-- | apps/playlist_viewer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c index fd6a01117f..2f23d87c2b 100644 --- a/apps/playlist_viewer.c +++ b/apps/playlist_viewer.c @@ -972,8 +972,8 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename) quick_screen_quick(button); update_playlist(true); update_lists(&playlist_lists); - break; } + break; #endif #ifdef HAVE_HOTKEY case ACTION_TREE_HOTKEY: |