]> git.cameronkatri.com Git - mandoc.git/blobdiff - demandoc.c
No need to populate the TYPE_arch and TYPE_sec bits, the information
[mandoc.git] / demandoc.c
index f55109cdc0e86665f8b437ef86fe7b02d34e9d4f..c33fd89169a70bdd85e2ce866523f9b20a0f3563 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: demandoc.c,v 1.25 2016/01/08 02:13:39 schwarze Exp $ */
+/*     $Id: demandoc.c,v 1.27 2016/07/09 15:24:19 schwarze Exp $ */
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -20,7 +20,6 @@
 
 #include <assert.h>
 #include <ctype.h>
 
 #include <assert.h>
 #include <ctype.h>
-#include <getopt.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -87,7 +86,7 @@ main(int argc, char *argv[])
 
        for (i = 0; i < argc; i++) {
                mparse_reset(mp);
 
        for (i = 0; i < argc; i++) {
                mparse_reset(mp);
-               if (mparse_open(mp, &fd, argv[i]) != MANDOCLEVEL_OK) {
+               if ((fd = mparse_open(mp, argv[i])) == -1) {
                        perror(argv[i]);
                        continue;
                }
                        perror(argv[i]);
                        continue;
                }