From 80e181f7b07fbf3344f65fd3c52e5eb0a007dab2 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 4 Sep 2010 20:18:53 +0000 Subject: Churny commit to quiet lint. No functional changes. --- chars.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chars.c') diff --git a/chars.c b/chars.c index 29132c85..f66fb538 100644 --- a/chars.c +++ b/chars.c @@ -1,4 +1,4 @@ -/* $Id: chars.c,v 1.28 2010/08/29 11:36:49 kristaps Exp $ */ +/* $Id: chars.c,v 1.29 2010/09/04 20:18:53 kristaps Exp $ */ /* * Copyright (c) 2009, 2010 Kristaps Dzonsons * @@ -94,13 +94,13 @@ chars_init(enum chars type) tab = malloc(sizeof(struct tbl)); if (NULL == tab) { perror(NULL); - exit(MANDOCLEVEL_SYSERR); + exit((int)MANDOCLEVEL_SYSERR); } htab = calloc(PRINT_HI - PRINT_LO + 1, sizeof(struct ln **)); if (NULL == htab) { perror(NULL); - exit(MANDOCLEVEL_SYSERR); + exit((int)MANDOCLEVEL_SYSERR); } for (i = 0; i < LINES_MAX; i++) { -- cgit v1.2.3