aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-26 09:06:03 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-26 09:06:03 +0000
commitaae9031298fb0d0238d16af6152673e7a820c0d5 (patch)
tree457ea4d06cfebc957bf04465a01bc16b67a6206c
parentfc70a68e0eacfaf9b8f3265bd2a0056c7f5e641d (diff)
downloadmandoc-aae9031298fb0d0238d16af6152673e7a820c0d5.tar.gz
mandoc-aae9031298fb0d0238d16af6152673e7a820c0d5.tar.zst
mandoc-aae9031298fb0d0238d16af6152673e7a820c0d5.zip
-rw-r--r--term.c5
1 files changed, 3 insertions, 2 deletions
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 <kristaps@kth.se>
*
@@ -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++)