diff options
author | Nick Wellnhofer <[email protected]> | 2015-06-07 16:48:01 +0200 |
---|---|---|
committer | Nick Wellnhofer <[email protected]> | 2015-06-07 21:42:15 +0200 |
commit | d49d3fd7bab4a8734e5f22318e3fb538bfe20dbb (patch) | |
tree | 9dbef5a646d034847153303f455907db3f228ccf /src/buffer.c | |
parent | e2b4500209821198413fb7fb6127060034b64c87 (diff) |
Change return type of cmark_strbuf_len
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 19ea677..efee41d 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -95,7 +95,7 @@ void cmark_strbuf_grow(cmark_strbuf *buf, bufsize_t target_size) buf->ptr = new_ptr; } -size_t cmark_strbuf_len(const cmark_strbuf *buf) +bufsize_t cmark_strbuf_len(const cmark_strbuf *buf) { return buf->size; } |