Commit 954295dc authored by Rafaël Carré's avatar Rafaël Carré

logger: cascade if/else for different modes

(cherry picked from commit 2e86bc8f)
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 7b002b05
......@@ -265,7 +265,11 @@ static int Open( vlc_object_t *p_this )
else
#endif
#ifdef __ANDROID__
if( cb != AndroidPrint )
if( cb == AndroidPrint )
{
/* nothing to do */
}
else
#endif
{
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