]> git.sesse.net Git - vlc/commitdiff
* modules/gui/macosx/intf.m
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 30 Jan 2003 15:46:29 +0000 (15:46 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 30 Jan 2003 15:46:29 +0000 (15:46 +0000)
  - fixed a warning about parentheses

modules/gui/macosx/intf.m

index 8b1c57b543c6429d2bdb72d699874df03b54dd25..512cf05990763c4221545a2ff7f61412e8947503 100644 (file)
@@ -2,7 +2,7 @@
  * intf.m: MacOS X interface plugin
  *****************************************************************************
  * Copyright (C) 2002-2003 VideoLAN
- * $Id: intf.m,v 1.40 2003/01/30 15:39:38 hartman Exp $
+ * $Id: intf.m,v 1.41 2003/01/30 15:46:29 hartman Exp $
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Christophe Massiot <massiot@via.ecp.fr>
@@ -648,7 +648,7 @@ static void Run( intf_thread_t *p_intf )
         vlc_object_release( p_playlist );
     }
     
-    if ( b_input = ( p_intf->p_sys->p_input != NULL ) )
+    if ( ( b_input = ( p_intf->p_sys->p_input != NULL ) ) )
     {
         /* control buttons for free pace streams */
         b_control = p_intf->p_sys->p_input->stream.b_pace_control;