Changeset 923e80b5c2a7372b98cbee47c01a078cfab1904c

Show
Ignore:
Timestamp:
05/08/08 22:30:28 (2 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1210278628 +0200
git-parent:

[a7e8d944f93a414be8995d53bb9bcc92b00fbc19]

git-author:
Rafaël Carré <funman@videolan.org> 1210278384 +0200
Message:

Don't use multiple lines macros in if conditions

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/ncurses.c

    r27d483e r923e80b  
    569569     
    570570    #define ReturnTrue \ 
     571    do { \ 
    571572    vlc_object_release( p_playlist ); \ 
    572     return 1 
     573    return 1; \ 
     574    } while(0) 
    573575     
    574576    #define ReturnFalse \ 
     577    do { \ 
    575578    vlc_object_release( p_playlist ); \ 
    576     return 0 
     579    return 0; \ 
     580    } while(0) 
    577581 
    578582    playlist_t *p_playlist = pl_Yield( p_intf );