iliaa Wed Dec 11 16:55:45 2002 EDT Modified files: /php4/ext/gd/libgd gd.c Log: White space fixes. Index: php4/ext/gd/libgd/gd.c diff -u php4/ext/gd/libgd/gd.c:1.34 php4/ext/gd/libgd/gd.c:1.35 --- php4/ext/gd/libgd/gd.c:1.34 Wed Dec 11 16:52:29 2002 +++ php4/ext/gd/libgd/gd.c Wed Dec 11 16:55:45 2002 @@ -1048,20 +1048,20 @@ 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 */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php