From b832af75f0f090ab9fd28ec61400aafdf98816eb Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Sun, 6 Oct 2002 08:39:05 +0000 Subject: [PATCH] WS fix - although the entire libgd directory is horrendously formatted. However, since we are forking existing code, fixing it would make it much harder to merge any Boutell patches (if they ever come out with any). --- ext/gd/libgd/gd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/libgd/gd.c b/ext/gd/libgd/gd.c index fa37e37b4df..d09b61f5375 100644 --- a/ext/gd/libgd/gd.c +++ b/ext/gd/libgd/gd.c @@ -1739,7 +1739,7 @@ gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int s /* Destination is palette based */ if (src->trueColor) { /* But source is truecolor (Ouch!) */ - toy = dstY; + toy = dstY; for (y = srcY; (y < (srcY + h)); y++) { tox = dstX;