summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2013-03-06 17:31:01 +0100
committerJohns <johns98@gmx.net>2013-03-06 17:31:01 +0100
commita7562eb2bef200b5e28f919ffbe04bf9ce5738df (patch)
treed380a8ae14e2c3d49809ec14f0bbc59e335b6370
parenta747829ffb807a7e75b6a11128e1dfe5d95948f9 (diff)
downloadvdr-plugin-softhddevice-a7562eb2bef200b5e28f919ffbe04bf9ce5738df.tar.gz
vdr-plugin-softhddevice-a7562eb2bef200b5e28f919ffbe04bf9ce5738df.tar.bz2
Removes "static" warning.
-rw-r--r--video.c2
1 files changed, 1 insertions, 1 deletions
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);