]> git.sesse.net Git - vlc/commitdiff
Should fix OS X build
authorClément Stenac <zorglub@videolan.org>
Sat, 16 Sep 2006 11:20:10 +0000 (11:20 +0000)
committerClément Stenac <zorglub@videolan.org>
Sat, 16 Sep 2006 11:20:10 +0000 (11:20 +0000)
src/interface/interface.c

index 8c066163ddb154bf693fd54bfb6055d450c8cd7a..c660b67765e1520627465b20d93e4226a281b30f 100644 (file)
@@ -469,7 +469,7 @@ static int AddIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
 
 - (void)setVLC: (libvlc_int_t *) p_libvlc
 {
-    o_vlc = p_libvlc;
+    o_libvlc = p_libvlc;
 }
 
 - (void)stop: (id)sender
@@ -491,7 +491,7 @@ static int AddIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
 
 - (void)terminate: (id)sender
 {
-    o_vlc->b_die = VLC_TRUE;
+    o_libvlc->b_die = VLC_TRUE;
 }
 
 @end