summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2012-10-30 16:35:36 +0000
committerwm4 <wm4@nowhere>2012-10-31 22:31:52 +0100
commit5c72ff6a251de7df37456cf113f7dd718d7784de (patch)
treeac4b6f3ff0db4b92be45b153aa05f354f7423bf2
parent17f2166b73f665cb6b293708ba758ceaa467a832 (diff)
downloadmpv-5c72ff6a251de7df37456cf113f7dd718d7784de.tar.bz2
mpv-5c72ff6a251de7df37456cf113f7dd718d7784de.tar.xz
x11_common: make some variables static
Make some variables static. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@35285 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/x11_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c
index 1e097bfeaf..04d5c6880b 100644
--- a/libvo/x11_common.c
+++ b/libvo/x11_common.c
@@ -96,8 +96,8 @@ int metacity_hack = 0;
#ifdef CONFIG_XF86VM
static int modecount;
-XF86VidModeModeInfo **vidmodes = NULL;
-XF86VidModeModeLine modeline;
+static XF86VidModeModeInfo **vidmodes;
+static XF86VidModeModeLine modeline;
#endif
static int vo_x11_get_fs_type(int supported);