summaryrefslogtreecommitdiff
path: root/tests/gdimagecopyrotated
diff options
context:
space:
mode:
authorpierrejoye <none@none>2013-04-03 14:23:11 +0200
committerpierrejoye <none@none>2013-04-03 14:23:11 +0200
commite20413bf6b872a8c23f1704a89295c5897347c9d (patch)
treef34b5402f97cd826bb312e18677f3974d53bfd52 /tests/gdimagecopyrotated
parent385566e4ba57d803921a13306ead66f354cee0a2 (diff)
downloadlibgd-e20413bf6b872a8c23f1704a89295c5897347c9d.tar.gz
- apply same CS everywhere
Diffstat (limited to 'tests/gdimagecopyrotated')
-rw-r--r--tests/gdimagecopyrotated/bug00020.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/gdimagecopyrotated/bug00020.c b/tests/gdimagecopyrotated/bug00020.c
index 723a43f..f1c2467 100644
--- a/tests/gdimagecopyrotated/bug00020.c
+++ b/tests/gdimagecopyrotated/bug00020.c
@@ -6,8 +6,8 @@
int main()
{
- gdImagePtr im, im2;
- int error = 0;
+ gdImagePtr im, im2;
+ int error = 0;
char path[1024];
sprintf(path, "%s/gdimagecopyrotated/bug00020_exp.png", GDTEST_TOP_DIR);
@@ -16,7 +16,7 @@ int main()
gdImageFilledRectangle(im, 0,0, width, width, 0xFF0000);
gdImageColorTransparent(im, 0xFF0000);
gdImageFilledEllipse(im, width/2, width/2, width - 20, width - 10,
- 0x50FFFFFF);
+ 0x50FFFFFF);
im2 = gdImageCreateTrueColor(width, width);
@@ -27,6 +27,6 @@ int main()
}
gdImageDestroy(im2);
- gdImageDestroy(im);
- return error;
+ gdImageDestroy(im);
+ return error;
}