diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-26 09:06:03 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-26 09:06:03 +0000 |
commit | 9ff38b1454e6f97e5bc4a73b821f62bf1c677b23 (patch) | |
tree | efb21017ec4f211b05c883f59bf2224f78d35eae /term.c | |
parent | 19504e01c700e1356dcbcf40adfe47966b04fad8 (diff) | |
download | mandoc-9ff38b1454e6f97e5bc4a73b821f62bf1c677b23.tar.gz |
Lint fix.VERSION.1.9.10
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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++) |