From 5b5ceede2b10a282b15e061a0235b4129dfcbae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 24 Sep 2015 01:20:33 +0200 Subject: [PATCH] wayland: Fix variable declaration Storage class always goes first. --- src/wayland/meta-wayland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 };