From a7562eb2bef200b5e28f919ffbe04bf9ce5738df Mon Sep 17 00:00:00 2001 From: Johns Date: Wed, 6 Mar 2013 17:31:01 +0100 Subject: [PATCH] Removes "static" warning. --- video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video.c b/video.c index aabe4ab..beca423 100644 --- a/video.c +++ b/video.c @@ -10826,7 +10826,7 @@ void VideoSetAutoCrop(int interval, int delay, int tolerance) /// int VideoRaiseWindow(void) { - const static uint32_t values[] = { XCB_STACK_MODE_ABOVE }; + static const uint32_t values[] = { XCB_STACK_MODE_ABOVE }; xcb_configure_window(Connection, VideoWindow, XCB_CONFIG_WINDOW_STACK_MODE, values);