From 4a86a0a57b245a2f288559b810ad7b156bb4ff66 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 25 Nov 2013 18:01:32 +0000 Subject: [PATCH] shell: Add missing cases to switch statements for animations and fading This fixes two GCC warnings when compiling with -Wswitch-enum -Wswitch-default, and makes it clearer that those cases have been thought about explicitly when writing the code, rather than just being forgotten. --- src/shell.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/shell.c b/src/shell.c index 7d71e940a..2fff62b80 100644 --- a/src/shell.c +++ b/src/shell.c @@ -3978,6 +3978,8 @@ shell_fade_done(struct weston_view_animation *animation, void *data) case FADE_OUT: lock(shell); break; + default: + break; } } @@ -4379,6 +4381,7 @@ map(struct desktop_shell *shell, struct shell_surface *shsurf, case ANIMATION_ZOOM: weston_zoom_run(shsurf->view, 0.5, 1.0, NULL, NULL); break; + case ANIMATION_NONE: default: break; }