diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-06-17 10:24:13 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-06-17 10:24:13 +0200 |
commit | b058141ef35119f3e0b51c73716abbe235b034e2 (patch) | |
tree | d8d1c52b72bf8dd89002c840512cb6ccc343c974 /draw/porterduff.c | |
parent | c2a2f1cf5349992896a86bcbcf648a0a27f4be9d (diff) | |
download | mupdf-b058141ef35119f3e0b51c73716abbe235b034e2.tar.xz |
Fix a handful typos reported in bug 691398.
Diffstat (limited to 'draw/porterduff.c')
-rw-r--r-- | draw/porterduff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/draw/porterduff.c b/draw/porterduff.c index 60315376..34d5cee8 100644 --- a/draw/porterduff.c +++ b/draw/porterduff.c @@ -200,6 +200,8 @@ path_w4i1o4(byte * restrict argb, byte * restrict src, byte cov, int len, byte * static void text_1o1(byte * restrict src, int srcw, byte * restrict dst, int dstw, int w0, int h) { + srcw -= w0; + dstw -= w0; while (h--) { int w = w0; |