summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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));