Skip to content

Commit

Permalink
fix up last Windows compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhendricks committed Mar 25, 2023
1 parent 8c1b204 commit 433cfc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/char_ref.c
Original file line number Diff line number Diff line change
Expand Up @@ -23037,7 +23037,7 @@ static bool consume_named_ref(
if (cs >= 7623) {
assert(output->first != kGumboNoChar);
char last_char = *(te - 1);
int len = te - start;
int len = (int) (te - start);
if (last_char == ';') {
bool matched = utf8iterator_maybe_consume_match(input, start, len, true);
assert(matched);
Expand Down

0 comments on commit 433cfc1

Please sign in to comment.