diff options
author | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-11-01 13:46:30 +0000 |
---|---|---|
committer | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-11-04 18:11:39 +0000 |
commit | 79a728d7d2a379799a2813b83a418ece1ff1aa3c (patch) | |
tree | d101676ef0c27d1c3eeee2d4f4e5f1d29acf0d53 /libraries | |
parent | 98444bd8656c396f4dd04721ddf7721910c07b48 (diff) | |
download | PrismLauncher-79a728d7d2a379799a2813b83a418ece1ff1aa3c.tar.gz PrismLauncher-79a728d7d2a379799a2813b83a418ece1ff1aa3c.tar.bz2 PrismLauncher-79a728d7d2a379799a2813b83a418ece1ff1aa3c.zip |
Fix: Conflicting types for hoedown functions
Signed-off-by: TheLastRar <TheLastRar@users.noreply.github.com>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/hoedown/src/autolink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/hoedown/src/autolink.c b/libraries/hoedown/src/autolink.c index 3063b1a0..3592b8e3 100644 --- a/libraries/hoedown/src/autolink.c +++ b/libraries/hoedown/src/autolink.c @@ -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; |