From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id cc9cd276 for ; Fri, 28 Jul 2017 09:26:18 -0500 (EST) Date: Fri, 28 Jul 2017 09:26:18 -0500 (EST) Message-Id: <5853411687671428587.enqueue@fantadrom.bsd.lv> X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: fix typo in TERMP_MULTICOL flag test; patch from florian@, found X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- fix typo in TERMP_MULTICOL flag test; patch from florian@, found with clang Modified Files: -------------- mandoc: term.c Revision Data ------------- Index: term.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/term.c,v retrieving revision 1.273 retrieving revision 1.274 diff -Lterm.c -Lterm.c -u -p -r1.273 -r1.274 --- term.c +++ term.c @@ -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) { -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv