[vlc-commits] vlccore: declare super_mutex and super_variable as static variable on OS/2

KO Myung-Hun git at videolan.org
Sat Mar 2 17:20:45 CET 2013


vlc | branch: master | KO Myung-Hun <komh78 at gmail.com> | Sun Mar  3 00:11:07 2013 +0900| [1dceede1471d73d55b4935570868d472be528b9c] | committer: Rémi Denis-Courmont

vlccore: declare super_mutex and super_variable as static variable on OS/2

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1dceede1471d73d55b4935570868d472be528b9c
---

 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 ea7c676..a6941b9 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);



More information about the vlc-commits mailing list