From aae9031298fb0d0238d16af6152673e7a820c0d5 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 26 Oct 2009 09:06:03 +0000 Subject: Lint fix. --- term.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'term.c') diff --git a/term.c b/term.c index d4171aa3..23ab6875 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.111 2009/10/26 07:18:23 kristaps Exp $ */ +/* $Id: term.c,v 1.112 2009/10/26 09:06:03 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -204,7 +204,8 @@ term_flushln(struct termp *p) vis = 0; } /* Remove the overstep width. */ - bp += overstep; + bp += (int)/* LINTED */ + overstep; overstep = 0; } else { for (j = 0; j < (int)vbl; j++) -- cgit v1.2.3