1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[css] enum css_token_type -> unsigned int

This commit is contained in:
Witold Filipczyk 2022-01-26 18:41:03 +01:00
parent 9a02780b9d
commit 76f525bcb9
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ scan_css_token(struct scanner *scanner, struct scanner_token *token)
{
const char *string = scanner->position;
unsigned char first_char = *string;
enum css_token_type type = CSS_TOKEN_GARBAGE;
/*enum css_token_type*/ unsigned int type = CSS_TOKEN_GARBAGE;
int real_length = -1;
assert(first_char);

View File

@ -129,7 +129,7 @@ scan_css_token(struct dom_scanner *scanner, struct dom_scanner_token *token)
{
char *string = scanner->position;
unsigned char first_char = *string;
enum css_token_type type = CSS_TOKEN_GARBAGE;
/*enum css_token_type*/ unsigned int type = CSS_TOKEN_GARBAGE;
int real_length = -1;
assert(first_char);