1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-09-15 04:08:07 -04:00

Remove superfluous continue; (CID 171999 et al)

This commit is contained in:
Moritz Grimm 2017-09-20 11:32:34 +02:00
parent 89b4260c83
commit 399e66df2b

View File

@ -36,8 +36,8 @@ static int _cfg_xmlfile_parse_decoders(xmlDocPtr, xmlNodePtr);
static int _cfg_xmlfile_parse_encoder(xmlDocPtr, xmlNodePtr);
static int _cfg_xmlfile_parse_encoders(xmlDocPtr, xmlNodePtr);
#define XML_CHAR(s) (const xmlChar *)(s)
#define STD_CHAR(s) (const char *)(s)
#define XML_CHAR(s) (const xmlChar *)(s)
#define STD_CHAR(s) (const char *)(s)
#define XML_STRCONFIG(s, f, e) do { \
if (0 == xmlStrcasecmp(cur->name, XML_CHAR((e)))) { \
@ -51,7 +51,6 @@ static int _cfg_xmlfile_parse_encoders(xmlDocPtr, xmlNodePtr);
error = 1; \
} \
xmlFree(val); \
continue; \
} \
} while (0)