From 1dceede1471d73d55b4935570868d472be528b9c Mon Sep 17 00:00:00 2001 From: KO Myung-Hun Date: Sun, 3 Mar 2013 00:11:07 +0900 Subject: [PATCH] vlccore: declare super_mutex and super_variable as static variable on OS/2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: RĂ©mi Denis-Courmont --- src/os2/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/os2/thread.c b/src/os2/thread.c index ea7c6766dd..a6941b92cb 100644 --- a/src/os2/thread.c +++ b/src/os2/thread.c @@ -119,8 +119,8 @@ static ULONG vlc_Sleep (ULONG ulTimeout) return ( rc != ERROR_TIMEOUT ) ? rc : 0; } -vlc_mutex_t super_mutex; -vlc_cond_t super_variable; +static vlc_mutex_t super_mutex; +static vlc_cond_t super_variable; extern vlc_rwlock_t config_lock, msg_lock; int _CRT_init(void); -- 2.11.4.GIT