summaryrefslogtreecommitdiffstats
path: root/roff_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2021-09-19 18:07:09 +0000
committerIngo Schwarze <schwarze@openbsd.org>2021-09-19 18:07:09 +0000
commite0e262ba899c1771d2c72c3dc9e5c913089f55f0 (patch)
treee1a96f874fd661203492abf6c5dee225ecba6657 /roff_term.c
parent3a6b7176cf6e7fceaf44a89ca6925af53bc13f12 (diff)
downloadmandoc-e0e262ba899c1771d2c72c3dc9e5c913089f55f0.tar.gz
clarify the meaning of a complicated mixed signed/unsigned expression;
Thomas Klausner <wiz at NetBSD> reported a compiler warning
Diffstat (limited to 'roff_term.c')
-rw-r--r--roff_term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/roff_term.c b/roff_term.c
index 771472d6..115d850f 100644
--- a/roff_term.c
+++ b/roff_term.c
@@ -181,7 +181,7 @@ roff_term_pre_po(ROFF_TERM_ARGS)
/* Truncate to the range [-offset, 60], remember, and apply it. */
pouse = po >= 60 ? 60 :
- po < -(int)p->tcol->offset ? -p->tcol->offset : po;
+ po < -(int)p->tcol->offset ? -(int)p->tcol->offset : po;
p->tcol->offset += pouse;
}