Commit 2e86bc8f authored by Rafaël Carré's avatar Rafaël Carré

logger: cascade if/else for different modes

parent 7c6abb20
...@@ -257,7 +257,11 @@ static int Open( vlc_object_t *p_this ) ...@@ -257,7 +257,11 @@ static int Open( vlc_object_t *p_this )
else else
#endif #endif
#ifdef __ANDROID__ #ifdef __ANDROID__
if( cb != AndroidPrint ) if( cb == AndroidPrint )
{
/* nothing to do */
}
else
#endif #endif
{ {
char *psz_file = var_InheritString( p_intf, "logfile" ); char *psz_file = var_InheritString( p_intf, "logfile" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment