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 /term.c | |
parent | 8602ef022ba97685524bab84712ad686cd05b20e (diff) | |
download | mandoc-21de3d786d824d615243412d130c128be19a03dd.tar.gz |
Churny commit to quiet lint. No functional changes.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -83,7 +83,7 @@ term_alloc(enum termenc enc) p = calloc(1, sizeof(struct termp)); if (NULL == p) { perror(NULL); - exit(MANDOCLEVEL_SYSERR); + exit((int)MANDOCLEVEL_SYSERR); } p->enc = enc; @@ -576,7 +576,7 @@ adjbuf(struct termp *p, size_t sz) p->buf = realloc(p->buf, p->maxcols); if (NULL == p->buf) { perror(NULL); - exit(MANDOCLEVEL_SYSERR); + exit((int)MANDOCLEVEL_SYSERR); } } |