]> git.cameronkatri.com Git - mandoc.git/commitdiff
fix typo in TERMP_MULTICOL flag test;
authorIngo Schwarze <schwarze@openbsd.org>
Fri, 28 Jul 2017 14:25:48 +0000 (14:25 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Fri, 28 Jul 2017 14:25:48 +0000 (14:25 +0000)
patch from florian@, found with clang

term.c

diff --git a/term.c b/term.c
index 595390b671b44eb8549fadb092d7d3c4214955a6..f67fcf9d959ff7fe6f9823fcdfabfcb09e72b4e4 100644 (file)
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/*     $Id: term.c,v 1.273 2017/06/14 23:24:18 schwarze Exp $ */
+/*     $Id: term.c,v 1.274 2017/07/28 14:25:48 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -129,7 +129,7 @@ term_flushln(struct termp *p)
            p->maxrmargin - p->viscol - vbl : 0;
        vis = vend = 0;
 
-       if ((p->flags && TERMP_MULTICOL) == 0)
+       if ((p->flags & TERMP_MULTICOL) == 0)
                p->tcol->col = 0;
        while (p->tcol->col < p->tcol->lastcol) {