Skip to content

Commit

Permalink
Fix size mismatch warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Relintai committed Jun 18, 2024
1 parent 3f996fa commit 946092e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/web/html/libs/hoedown/autolink.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ hoedown_autolink__www(
uint8_t *data,
size_t max_rewind,
size_t size,
unsigned int flags)
hoedown_autolink_flags flags)
{
size_t link_end;

Expand Down Expand Up @@ -186,7 +186,7 @@ hoedown_autolink__email(
uint8_t *data,
size_t max_rewind,
size_t size,
unsigned int flags)
hoedown_autolink_flags flags)
{
size_t link_end, rewind;
int nb = 0, np = 0;
Expand Down Expand Up @@ -242,7 +242,7 @@ hoedown_autolink__url(
uint8_t *data,
size_t max_rewind,
size_t size,
unsigned int flags)
hoedown_autolink_flags flags)
{
size_t link_end, rewind = 0, domain_len;

Expand Down

0 comments on commit 946092e

Please sign in to comment.