summaryrefslogtreecommitdiffstats
path: root/source/view.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-12 08:53:16 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-12 08:53:16 +0200
commit1b3ce23b80ddae9fe5bf4785ade1732d3cfd6c35 (patch)
treea125a787dc98a29d2b28af88ba0fbfaf959ac38b /source/view.c
parent26d9da7263ce4aed3a787d4e68153bc5fb41dd5c (diff)
Add missing null statement for fallthrough
Diffstat (limited to 'source/view.c')
-rw-r--r--source/view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/view.c b/source/view.c
index 60e84d6d..5ecf167d 100644
--- a/source/view.c
+++ b/source/view.c
@@ -311,7 +311,7 @@ static void rofi_view_calculate_window_position ( RofiViewState *state )
state->x = CacheState.mon.x;
break;
case WL_CENTER:
- __attribute__ ( ( fallthrough ) );
+ ;__attribute__ ( ( fallthrough ) );
default:
break;
}