]> git.sesse.net Git - vlc/commitdiff
vcdx: fix warning.
authorRémi Duraffort <ivoire@videolan.org>
Sun, 8 Mar 2009 14:23:32 +0000 (15:23 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Sun, 8 Mar 2009 14:30:27 +0000 (15:30 +0100)
modules/access/vcdx/info.c

index 7b40273ca3e36ec4eead862ffa865e2b622608bf..cf36e53bac448c4295a0b0abb4c38d816377cec6 100644 (file)
@@ -40,8 +40,8 @@
 #include <libvcd/logging.h>
 
 static inline void
-MetaInfoAddStr(access_t *p_access, char *psz_cat,
-               char *title, const char *psz)
+MetaInfoAddStr( access_t *p_access, char *psz_cat,
+                const char *title, const char *psz )
 {
   vcdplayer_t *p_vcdplayer = (vcdplayer_t *) p_access->p_sys;
   if ( psz ) {
@@ -53,7 +53,7 @@ MetaInfoAddStr(access_t *p_access, char *psz_cat,
 
 
 static inline void
-MetaInfoAddNum(access_t *p_access, char *psz_cat, char *title, int num)
+MetaInfoAddNum(access_t *p_access, char *psz_cat, const char *title, int num)
 {
   vcdplayer_t *p_vcdplayer = (vcdplayer_t *) p_access->p_sys;
   dbg_print( INPUT_DBG_META, "cat %s, field %s: %d", psz_cat,  title, num);
@@ -62,7 +62,7 @@ MetaInfoAddNum(access_t *p_access, char *psz_cat, char *title, int num)
 }
 
 static inline void
-MetaInfoAddHex(access_t *p_access, char *psz_cat, char *title, int hex)
+MetaInfoAddHex(access_t *p_access, char *psz_cat, const char *title, int hex)
 {
   vcdplayer_t *p_vcdplayer = (vcdplayer_t *) p_access->p_sys;
   dbg_print( INPUT_DBG_META, "cat %s, field %s: %d", psz_cat, title, hex);