]> git.cameronkatri.com Git - mandoc.git/blobdiff - chars.c
"sys/param.h is for kernel interface programs.
[mandoc.git] / chars.c
diff --git a/chars.c b/chars.c
index 908584d3058794a404fb4cdea78ccaafecd48e2e..26e0139ea01df11de245a015e8640dedfafead01 100644 (file)
--- a/chars.c
+++ b/chars.c
@@ -1,4 +1,4 @@
-/*     $Id: chars.c,v 1.26 2010/08/16 09:51:17 kristaps Exp $ */
+/*     $Id: chars.c,v 1.27 2010/08/20 01:02:07 schwarze Exp $ */
 /*
  * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -94,13 +94,13 @@ chars_init(enum chars type)
        tab = malloc(sizeof(struct tbl));
        if (NULL == tab) {
                perror(NULL);
-               exit(EXIT_FAILURE);
+               exit(MANDOCLEVEL_SYSERR);
        }
 
        htab = calloc(PRINT_HI - PRINT_LO + 1, sizeof(struct ln **));
        if (NULL == htab) {
                perror(NULL);
-               exit(EXIT_FAILURE);
+               exit(MANDOCLEVEL_SYSERR);
        }
 
        for (i = 0; i < LINES_MAX; i++) {