From 89bc85205463ed4eef7df54ff734580161da5892 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 8 Aug 2020 20:25:41 +0000 Subject: Fix incorrect calculation of midpoint when bpercent and wpercent overlap git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3907 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- editor/pnmnorm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/pnmnorm.c') diff --git a/editor/pnmnorm.c b/editor/pnmnorm.c index e0fe0e35..20d7eb04 100644 --- a/editor/pnmnorm.c +++ b/editor/pnmnorm.c @@ -487,7 +487,7 @@ disOverlap(xelval const reqBvalue, } } else { /* Both ends are free; use the point halfway between them. */ - xelval const midPoint = (reqWvalue + reqBvalue + maxval/2)/2; + xelval const midPoint = (reqWvalue + reqBvalue)/2; *nonOlapBvalueP = MIN(midPoint, maxval-1); *nonOlapWvalueP = *nonOlapBvalueP + 1; } -- cgit 1.4.1