diff options
author | John MacFarlane <[email protected]> | 2016-06-01 10:04:16 -0700 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2016-06-01 10:04:16 -0700 |
commit | 67617a56cdce713ae9b08040414e8123e66a8a93 (patch) | |
tree | 7ab76a45c3153063b47aae1b19c58e3a2cc7c26b /src | |
parent | f9919992d52356166ff4fcc9e4e4754d2a365e14 (diff) | |
parent | ae2165147ad1582f716468aab57dadb8aac6dd86 (diff) |
Merge pull request #132 from BenedictC/master
Changed type from int to size_t to fix implicit type conversion warning
Diffstat (limited to 'src')
-rw-r--r-- | src/latex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latex.c b/src/latex.c index a8c25c5..8a66678 100644 --- a/src/latex.c +++ b/src/latex.c @@ -155,7 +155,7 @@ static link_type get_link_type(cmark_node *node) { size_t title_len, url_len; cmark_node *link_text; char *realurl; - int realurllen; + size_t realurllen; bool isemail = false; if (node->type != CMARK_NODE_LINK) { |