summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKushal K S V S <kkushal32@gmail.com>2017-07-12 00:13:08 +0530
committerKushal K S V S <kkushal32@gmail.com>2018-03-18 20:40:44 +0530
commitefd951085081358214daeb5904a0cdefa907d70b (patch)
treec232cbb5a8f0d9ee7f71de0dd5eee35b65133771 /tests
parent9082ff89efa406e026b7102ac06faa9591a8bcf4 (diff)
downloadfreetype2-efd951085081358214daeb5904a0cdefa907d70b.tar.gz
minor changes
Diffstat (limited to 'tests')
-rw-r--r--tests/make_png/bitmap.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/make_png/bitmap.c b/tests/make_png/bitmap.c
index d73c8f237..3f3ca4a3f 100644
--- a/tests/make_png/bitmap.c
+++ b/tests/make_png/bitmap.c
@@ -308,8 +308,6 @@ void Read_PNG(char *filename, IMAGE * after_effect) {
after_effect->width = width;
after_effect->height = height;
- printf("%d %d\n",width,height );
-
row_pointers = (png_bytep*)malloc(sizeof(png_bytep) * height);
for(int y = 0; y < height; y++) {
row_pointers[y] = (png_byte*)malloc(png_get_rowbytes(png,info));