X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fmisc%2Fxml%2Fxtag.c;h=e2fdeecf5bc7b442ceda69068e3bd067c9f1394c;hb=99f02e92782d40eb07808b687b572faf5f6129f5;hp=487ce513292183f2994b55f475e6937b5566ebeb;hpb=9ecc09199b38f1a1740c3dd1e2386dd7ff6d2d48;p=vlc diff --git a/modules/misc/xml/xtag.c b/modules/misc/xml/xtag.c index 487ce51329..e2fdeecf5b 100644 --- a/modules/misc/xml/xtag.c +++ b/modules/misc/xml/xtag.c @@ -106,7 +106,7 @@ static char *ReaderName( xml_reader_t * ); static char *ReaderValue( xml_reader_t * ); static int ReaderNextAttr( xml_reader_t * ); -static int ReaderUseDTD ( xml_reader_t *, bool ); +static int ReaderUseDTD ( xml_reader_t * ); static XTag *xtag_new_parse( const char *, int ); static char *xtag_get_name( XTag * ); @@ -190,9 +190,9 @@ static void ReaderClose( vlc_object_t *p_this ) free( p_reader->p_sys ); } -static int ReaderUseDTD ( xml_reader_t *p_reader, bool b_use ) +static int ReaderUseDTD ( xml_reader_t *p_reader ) { - VLC_UNUSED(p_reader); VLC_UNUSED(b_use); + VLC_UNUSED(p_reader); return VLC_EGENERIC; }