Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

Commit

Permalink
commonmark.c - use size_t instead of int.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Jan 5, 2020
1 parent 00557b4 commit cfdca3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commonmark.c
Expand Up @@ -171,9 +171,9 @@ static int S_render_node(cmark_renderer *renderer, cmark_node *node,
cmark_node *tmp;
int list_number;
cmark_delim_type list_delim;
int numticks;
size_t numticks;
bool extra_spaces;
int i;
size_t i;
bool entering = (ev_type == CMARK_EVENT_ENTER);
const char *info, *code, *title;
char fencechar[2] = {'\0', '\0'};
Expand Down

0 comments on commit cfdca3e

Please sign in to comment.