Changeset af77062ae58030afd7d3a072f22c0ac1db707464

Show
Ignore:
Timestamp:
01/17/08 13:28:21 (7 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1200572901 +0000
git-parent:

[6c8ee7e1db7082e4eed1656e96a8c6f339147428]

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

"state" is an integer, not a boolean (since vlc_bool_t is an int, that only makes the code clearer to read)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/control/media_instance.c

    r9e76c8c raf77062  
    154154 
    155155    if( strcmp( psz_cmd, "state" ) ) 
    156         type = var_GetBool( p_this, "state" ); 
     156        type = var_GetInteger( p_this, "state" ); 
    157157 
    158158    switch ( type )