From a88a99fb9d5f75a421af70c0e7be6c33a721d4a8 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 11 Dec 2002 21:55:45 +0000 Subject: [PATCH] White space fixes. --- ext/gd/libgd/gd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 */ -- 2.50.1