1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[dom] enum sgml_parser_flag -> unsigned int

This commit is contained in:
Witold Filipczyk 2022-01-26 18:58:23 +01:00
parent 2764b531ea
commit 12e09622eb
2 changed files with 3 additions and 3 deletions

View File

@ -681,7 +681,7 @@ static struct dom_stack_context_info sgml_parser_context_info = {
struct sgml_parser *
init_sgml_parser(enum sgml_parser_type type, enum sgml_document_type doctype,
struct dom_string *uri, enum sgml_parser_flag flags)
struct dom_string *uri, /*enum sgml_parser_flag*/ unsigned int flags)
{
struct sgml_parser *parser;
enum dom_stack_flag stack_flags = 0;

View File

@ -83,7 +83,7 @@ typedef enum dom_code
*/
struct sgml_parser {
enum sgml_parser_type type; /**< Stream or tree */
enum sgml_parser_flag flags; /**< Flags that control the behaviour */
/*enum sgml_parser_flag*/ unsigned int flags; /**< Flags that control the behaviour */
struct sgml_info *info; /**< Backend dependent info */
@ -112,7 +112,7 @@ struct sgml_parser {
*/
struct sgml_parser *
init_sgml_parser(enum sgml_parser_type type, enum sgml_document_type doctype,
struct dom_string *uri, enum sgml_parser_flag flags);
struct dom_string *uri, /*enum sgml_parser_flag*/ unsigned int flags);
/** Release an SGML parser
*