[vlc-commits] commit: skins2: fix compil warning (Erwan Tulou )
    git at videolan.org 
    git at videolan.org
       
    Mon Dec  6 21:24:13 CET 2010
    
    
  
vlc | branch: master | Erwan Tulou <erwan10 at videolan.org> | Mon Dec  6 19:48:50 2010 +0100| [890ea92aede33e3e8ddd065844c4ab06acfe7615] | committer: Erwan Tulou 
skins2: fix compil warning
function call didn't match function prototype.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=890ea92aede33e3e8ddd065844c4ab06acfe7615
---
 modules/gui/skins2/parser/skin_parser.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/skins2/parser/skin_parser.cpp b/modules/gui/skins2/parser/skin_parser.cpp
index d89b82d..3e18e60 100644
--- a/modules/gui/skins2/parser/skin_parser.cpp
+++ b/modules/gui/skins2/parser/skin_parser.cpp
@@ -78,7 +78,7 @@ void SkinParser::handleBeginElement( const string &rName, AttrList_t &attr )
         msg_Dbg( getIntf(), "opening included XML file: %s", fullPath.c_str() );
         // FIXME: We do not use the DTD to validate the included XML file,
         // as the parser seems to dislike it otherwise...
-        SkinParser subParser( getIntf(), fullPath.c_str(), false, m_pData );
+        SkinParser subParser( getIntf(), fullPath.c_str(), m_path, false, m_pData );
         subParser.parse();
     }
 
    
    
More information about the vlc-commits
mailing list