summaryrefslogtreecommitdiff
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>2017-07-12 00:13:08 +0530
commit0cd3385ee0d968d3bebcf2318b15e0946658fa85 (patch)
treef126bdd76ea6bb04021046c778406110e0a3a574
parent3708ed86d4c6834028efe65c81aaca680eed9032 (diff)
downloadfreetype2-0cd3385ee0d968d3bebcf2318b15e0946658fa85.tar.gz
minor changes
-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));