diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-03-19 22:05:10 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-03-19 22:05:10 +0000 |
commit | cd337f65ece6ac4cd6eb91fcbd5a7a970956eb3f (patch) | |
tree | 5ca8a9bf48f24d010ce28fb82bbce7e430209d62 /demandoc.c | |
parent | 8ab1f57b8dbe6a9799dafa1181cae85b1e51b101 (diff) | |
download | mandoc-cd337f65ece6ac4cd6eb91fcbd5a7a970956eb3f.tar.gz |
cope with mparse_alloc() interface change
Diffstat (limited to 'demandoc.c')
-rw-r--r-- | demandoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ main(int argc, char *argv[]) argc -= optind; argv += optind; - mp = mparse_alloc(MPARSE_AUTO, MANDOCLEVEL_FATAL, NULL, NULL, 0); + mp = mparse_alloc(MPARSE_SO, MANDOCLEVEL_FATAL, NULL, NULL); assert(mp); if (0 == argc) |