From: Ilia Alshanetsky Date: Wed, 11 Dec 2002 21:55:45 +0000 (+0000) Subject: White space fixes. X-Git-Tag: RELEASE_1_0b3~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a88a99fb9d5f75a421af70c0e7be6c33a721d4a8;p=php White space fixes. --- diff --git a/ext/gd/libgd/gd.c b/ext/gd/libgd/gd.c index 7bfd05f14b..b82ab51382 100644 --- a/ext/gd/libgd/gd.c +++ b/ext/gd/libgd/gd.c @@ -1048,20 +1048,20 @@ inline static void gdImageSetAAPixelColor(gdImagePtr im, int x, int y, int color void gdImageAALine (gdImagePtr im, int x1, int y1, int x2, int y2, int col) { -/* keep them as 32bits */ -long x, y, inc; + /* keep them as 32bits */ + long x, y, inc; long dx, dy,tmp; if (y1 < 0 && y2 < 0) { return; } if (y1 < 0) { - x1 += (y1 * (x1 - x2)) / (y2 - y1); + x1 += (y1 * (x1 - x2)) / (y2 - y1); y1 = 0; } if (y2 < 0) { x2 += (y2 * (x1 - x2)) / (y2 - y1); - y2 = 0; + y2 = 0; } /* bottom edge */