Skip to content

Commit

Permalink
Merge pull request #132 from BenedictC/master
Browse files Browse the repository at this point in the history
Changed type from int to size_t to fix implicit type conversion warning
  • Loading branch information
jgm committed Jun 1, 2016
2 parents f991999 + ae21651 commit 67617a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/latex.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 67617a5

Please sign in to comment.