From 9ff38b1454e6f97e5bc4a73b821f62bf1c677b23 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 26 Oct 2009 09:06:03 +0000 Subject: Lint fix. --- term.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/term.c b/term.c index ccc6bf1e..0afe5c79 100644 --- a/term.c +++ b/term.c @@ -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