diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-09-04 20:18:53 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-09-04 20:18:53 +0000 |
commit | 21de3d786d824d615243412d130c128be19a03dd (patch) | |
tree | ab13ee82b862b2765d7c0c37af592c9ab33fb1de /html.c | |
parent | 8602ef022ba97685524bab84712ad686cd05b20e (diff) | |
download | mandoc-21de3d786d824d615243412d130c128be19a03dd.tar.gz |
Churny commit to quiet lint. No functional changes.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -116,7 +116,7 @@ ml_alloc(char *outopts, enum htmltype type) h = calloc(1, sizeof(struct html)); if (NULL == h) { perror(NULL); - exit(MANDOCLEVEL_SYSERR); + exit((int)MANDOCLEVEL_SYSERR); } h->type = type; @@ -398,7 +398,7 @@ print_otag(struct html *h, enum htmltag tag, t = malloc(sizeof(struct tag)); if (NULL == t) { perror(NULL); - exit(MANDOCLEVEL_SYSERR); + exit((int)MANDOCLEVEL_SYSERR); } t->tag = tag; t->next = h->tags.head; |