Commit 52bdf5d0 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

vcdx: No need to cast. Kill a warning.

parent 5c660e79
......@@ -908,7 +908,7 @@ VCDOpen ( vlc_object_t *p_this )
goto err_exit;
}
p_vcdplayer->b_svd= (bool) vcdinfo_get_tracksSVD(p_vcdplayer->vcd);;
p_vcdplayer->b_svd = vcdinfo_get_tracksSVD(p_vcdplayer->vcd);
/* Get track information. */
p_vcdplayer->i_tracks = vcdinfo_get_num_tracks(p_vcdplayer->vcd);
......
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