diff options
author | William Wilgus <wilgus.william@gmail.com> | 2021-08-13 07:46:45 -0400 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2021-08-13 11:51:21 +0000 |
commit | aad15d5cd79a23d238a3cd3256001d61c46b8e50 (patch) | |
tree | 21bcd3811fe85b442818f3e053449fb266cc0c5c /apps/plugins/pictureflow | |
parent | da97524252b1313574094dcb90d6ccf395fc88b9 (diff) |
code cleanup encase ;; in brackets {;;}
Change-Id: I253e19695709b4184ceb4a0748300f7c68437c1c
Diffstat (limited to 'apps/plugins/pictureflow')
-rw-r--r-- | apps/plugins/pictureflow/pictureflow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c index 9731d92d35..f2bf1f79b3 100644 --- a/apps/plugins/pictureflow/pictureflow.c +++ b/apps/plugins/pictureflow/pictureflow.c @@ -571,7 +571,7 @@ static bool confirm_quit(void) { (const char*[]) {"Quit?", "Progress will be lost"}, 2}; enum yesno_res response = rb->gui_syncyesno_run(&prompt, NULL, NULL); while (rb->button_get(false) == BUTTON_NONE) - ;; + {;;} if(response == YESNO_NO) return false; @@ -2286,7 +2286,7 @@ static bool free_slide_prio(int prio) static void free_all_slide_prio(int prio) { while (free_slide_prio(prio)) - ;; + {;;} } |