aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-08-22 17:36:40 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-08-22 17:36:40 +0200
commit49ddc26d970b466886045af9796448337f05a778 (patch)
treea166130841610f802e334ac0c006185619aafe80
parent352f413762a28005f5d892d7d1cd2b368ba7cca8 (diff)
Cleanup fallthrough
-rw-r--r--watch.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/watch.c b/watch.c
index d927286..71a10bf 100644
--- a/watch.c
+++ b/watch.c
@@ -53,9 +53,8 @@ catchsig(int sig)
{
switch (sig) {
case SIGWINCH:
- resize_flag = 1;
- /* FALLTHROUGH */
case SIGALRM:
+ resize_flag = 1;
break;
case SIGINT:
case SIGTERM: