Commit 82147298 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Indentation and coding style fixes

parent 1c112069
......@@ -266,9 +266,8 @@ mediacontrol_sound_set_volume( mediacontrol_Instance *self,
if( !self->p_intf )
{
RAISE( mediacontrol_InternalException, "No interface module" );
return;
}
aout_VolumeSet( self->p_intf,( audio_volume_t )volume );
else aout_VolumeSet( self->p_intf,( audio_volume_t )volume );
}
vlc_bool_t mediacontrol_set_visual( mediacontrol_Instance *self,
......@@ -281,7 +280,7 @@ vlc_bool_t mediacontrol_set_visual( mediacontrol_Instance *self,
if( !self->p_vlc )
{
RAISE( mediacontrol_InternalException, "No vlc reference" );
return 0;
return VLC_FALSE;
}
value.i_int=visual_id;
ret = var_Set(self->p_vlc, "drawable", value);
......
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