summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2015-09-24 01:20:33 +0200
committerFlorian Müllner <fmuellner@gnome.org>2015-09-24 03:08:23 +0200
commit5b5ceede2b10a282b15e061a0235b4129dfcbae6 (patch)
tree12ea07a0d79d4c76b142bd8deb6d5bea26766960
parent4e63c95c024eb08c7a14a661f1893a8291473c25 (diff)
downloadmutter-5b5ceede2b10a282b15e061a0235b4129dfcbae6.tar.gz
wayland: Fix variable declaration
Storage class always goes first.
-rw-r--r--src/wayland/meta-wayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland/meta-wayland.c b/src/wayland/meta-wayland.c
index ee5875198..0d3748992 100644
--- a/src/wayland/meta-wayland.c
+++ b/src/wayland/meta-wayland.c
@@ -144,7 +144,7 @@ wl_compositor_create_region (struct wl_client *client,
meta_wayland_region_create (compositor, client, resource, id);
}
-const static struct wl_compositor_interface meta_wayland_wl_compositor_interface = {
+static const struct wl_compositor_interface meta_wayland_wl_compositor_interface = {
wl_compositor_create_surface,
wl_compositor_create_region
};