From d2f0b1f48367bc526f1d32270f1f98799389c2af Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Wed, 13 Mar 2002 15:47:42 +0000 Subject: Fix typo when computing maximums of sub-byte fields. (Stefan Israelsson, Wed Mar 13 10:31:07 2002 Owen Taylor * pango/pango-coverage.c (pango_coverage_max): Fix typo when computing maximums of sub-byte fields. (Stefan Israelsson, #74518) --- pango/pango-coverage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pango/pango-coverage.c') diff --git a/pango/pango-coverage.c b/pango/pango-coverage.c index 953cdfce..10b37f96 100644 --- a/pango/pango-coverage.c +++ b/pango/pango-coverage.c @@ -304,7 +304,7 @@ pango_coverage_max (PangoCoverage *coverage, MAX (byte1 & 0x3, byte2 & 0x3) | MAX (byte1 & 0xc, byte2 & 0xc) | MAX (byte1 & 0x30, byte2 & 0x30) | - MAX (byte1 & 0xc0, byte2 & 0xc00); + MAX (byte1 & 0xc0, byte2 & 0xc0); } } else @@ -336,7 +336,7 @@ pango_coverage_max (PangoCoverage *coverage, MAX (byte1 & 0x3, byte2 & 0x3) | MAX (byte1 & 0xc, byte2 & 0xc) | MAX (byte1 & 0x30, byte2 & 0x30) | - MAX (byte1 & 0xc0, byte2 & 0xc00); + MAX (byte1 & 0xc0, byte2 & 0xc0); } } } -- cgit v1.2.1