diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-03-13 15:47:42 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-03-13 15:47:42 +0000 |
commit | d2f0b1f48367bc526f1d32270f1f98799389c2af (patch) | |
tree | 64e29788499cb62b618a3787ff5ff550936c4c3e /pango/pango-coverage.c | |
parent | 4810649b54cc95d6926beaaa1305a4e5a205e0ce (diff) | |
download | pango-d2f0b1f48367bc526f1d32270f1f98799389c2af.tar.gz |
Fix typo when computing maximums of sub-byte fields. (Stefan Israelsson,
Wed Mar 13 10:31:07 2002 Owen Taylor <otaylor@redhat.com>
* pango/pango-coverage.c (pango_coverage_max): Fix typo
when computing maximums of sub-byte fields. (Stefan Israelsson,
#74518)
Diffstat (limited to 'pango/pango-coverage.c')
-rw-r--r-- | pango/pango-coverage.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } } } |