diff options
author | Johns <johns98@gmx.net> | 2013-03-06 17:31:01 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-03-06 17:31:01 +0100 |
commit | a7562eb2bef200b5e28f919ffbe04bf9ce5738df (patch) | |
tree | d380a8ae14e2c3d49809ec14f0bbc59e335b6370 /video.c | |
parent | a747829ffb807a7e75b6a11128e1dfe5d95948f9 (diff) | |
download | vdr-plugin-softhddevice-a7562eb2bef200b5e28f919ffbe04bf9ce5738df.tar.gz vdr-plugin-softhddevice-a7562eb2bef200b5e28f919ffbe04bf9ce5738df.tar.bz2 |
Removes "static" warning.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |