diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-01-03 22:08:38 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-03 22:08:38 -0800 |
commit | 60b6962db0b0488667180e11cc6cfb1cec1b41ea (patch) | |
tree | 9f3d399e48b781b5e363b47a2aa04e2b758e331c /src/inlines.c | |
parent | cc50a3aba3e34dc58ca819a65b907871e2ea6fd9 (diff) |
Revert "Change types for source map offsets (#174)"
This reverts commit 4fbe344df43ed7f60a3d3a53981088334cb709fc.
Diffstat (limited to 'src/inlines.c')
-rw-r--r-- | src/inlines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inlines.c b/src/inlines.c index 02b4723..9aea865 100644 --- a/src/inlines.c +++ b/src/inlines.c @@ -1229,7 +1229,7 @@ static int parse_inline(subject *subj, cmark_node *parent, int options) { // Parse inlines from parent's string_content, adding as children of parent. extern void cmark_parse_inlines(cmark_mem *mem, cmark_node *parent, cmark_reference_map *refmap, int options, - cmark_source_map *source_map, bufsize_t total_length) { + cmark_source_map *source_map, uint64_t total_length) { subject subj; subject_from_buf(mem, &subj, &parent->content, refmap, source_map); bufsize_t initial_len = subj.input.len; |