Fix size mismatch warning.

This commit is contained in:
Relintai 2024-06-18 10:17:25 +02:00
parent 3f996fad22
commit 946092e6fc

View File

@ -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;
@ -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;
@ -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;