]> git.cameronkatri.com Git - mandoc.git/commitdiff
Cope with mparse_alloc() interface change.
authorIngo Schwarze <schwarze@openbsd.org>
Sun, 5 Jan 2014 20:41:04 +0000 (20:41 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Sun, 5 Jan 2014 20:41:04 +0000 (20:41 +0000)
cgi.c
demandoc.c

diff --git a/cgi.c b/cgi.c
index 64bde45ce2c71c8c4239339071ba42c7a47f7a71..cc9663c8922834ee00c2d0f57b1f0ea4b601fced 100644 (file)
--- a/cgi.c
+++ b/cgi.c
@@ -1,4 +1,4 @@
-/*     $Id: cgi.c,v 1.46 2013/10/11 00:06:48 schwarze Exp $ */
+/*     $Id: cgi.c,v 1.47 2014/01/05 20:41:04 schwarze Exp $ */
 /*
  * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -739,7 +739,7 @@ format(const struct req *req, const char *file)
                return;
        }
 
-       mp = mparse_alloc(MPARSE_AUTO, MANDOCLEVEL_FATAL, NULL, NULL, NULL);
+       mp = mparse_alloc(MPARSE_AUTO, MANDOCLEVEL_FATAL, NULL, NULL, 0);
        rc = mparse_readfd(mp, fd, file);
        close(fd);
 
index aad42085b185b7ab274f4c88dd9fd46846674c3a..f93497f6e17455dbf9fec317fde40246e321e247 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: demandoc.c,v 1.7 2012/05/31 22:27:14 schwarze Exp $ */
+/*     $Id: demandoc.c,v 1.8 2014/01/05 20:41:04 schwarze Exp $ */
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -76,7 +76,7 @@ main(int argc, char *argv[])
        argc -= optind;
        argv += optind;
 
-       mp = mparse_alloc(MPARSE_AUTO, MANDOCLEVEL_FATAL, NULL, NULL, NULL);
+       mp = mparse_alloc(MPARSE_AUTO, MANDOCLEVEL_FATAL, NULL, NULL, 0);
        assert(mp);
 
        if (0 == argc)