[vlc-devel] commit: vcdx: No need to cast. Kill a warning. (Pierre d'Herbemont )

git version control git at videolan.org
Thu Aug 20 19:01:34 CEST 2009


vlc | branch: master | Pierre d'Herbemont <pdherbemont at free.fr> | Thu Aug 20 19:01:13 2009 +0200| [52bdf5d0a12af8c76dc42c2e1ad31024b63ea459] | committer: Pierre d'Herbemont 

vcdx: No need to cast. Kill a warning.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=52bdf5d0a12af8c76dc42c2e1ad31024b63ea459
---

 modules/access/vcdx/access.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/access/vcdx/access.c b/modules/access/vcdx/access.c
index c16bf9e..b04c549 100644
--- a/modules/access/vcdx/access.c
+++ b/modules/access/vcdx/access.c
@@ -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);




More information about the vlc-devel mailing list