diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-02-16 12:06:51 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-02-16 12:06:51 -0800 |
commit | 2bcca4c2118733f14a91eaf585e8ff97e216b6bd (patch) | |
tree | 5302f78894bcf100e7e8172c0289bb30ea3e5f0d /src/parser.h | |
parent | 5de2e4e9d39fd918d041169e2759d4f4b57a0cc6 (diff) |
Made 'options' an int rather than a long.
For consistency with the API.
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h index 7a3aec4..cbccae3 100644 --- a/src/parser.h +++ b/src/parser.h @@ -19,7 +19,7 @@ struct cmark_parser { cmark_strbuf *curline; int last_line_length; cmark_strbuf *linebuf; - long options; + int options; }; #ifdef __cplusplus |