[vlc-devel] commit: Fixed warnings. (Laurent Aimar )

git version control git at videolan.org
Sat Sep 20 16:51:33 CEST 2008


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sat Sep 20 16:36:05 2008 +0200| [ff1e54f138ff95ddb6149e2bd1f18bec97f7c5f3] | committer: Laurent Aimar 

Fixed warnings.

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

 src/video_output/vout_subpictures.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/video_output/vout_subpictures.c b/src/video_output/vout_subpictures.c
index a0795c5..e7eacf1 100644
--- a/src/video_output/vout_subpictures.c
+++ b/src/video_output/vout_subpictures.c
@@ -1079,8 +1079,8 @@ static void SpuRenderRegion( spu_t *p_spu,
                 {
                     /* Well we will try conversion+scaling */
                     msg_Warn( p_spu, "%4.4s to %4.4s conversion failed",
-                             &p_scale_yuvp->fmt_in.video.i_chroma,
-                             &p_scale_yuvp->fmt_out.video.i_chroma );
+                             (const char*)&p_scale_yuvp->fmt_in.video.i_chroma,
+                             (const char*)&p_scale_yuvp->fmt_out.video.i_chroma );
                 }
             }
 




More information about the vlc-devel mailing list