From 41f66bcc6b233d35b69eab6e7137fe82cd5bbe6e Mon Sep 17 00:00:00 2001 From: mazze Date: Tue, 28 Oct 2008 23:24:12 +0000 Subject: [PATCH] Sorry, forgot to remove debug output. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@29925 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- tools/ilbmtoicon/ilbmtoicon.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/ilbmtoicon/ilbmtoicon.c b/tools/ilbmtoicon/ilbmtoicon.c index 9f3489f6e..95d52c2c4 100644 --- a/tools/ilbmtoicon/ilbmtoicon.c +++ b/tools/ilbmtoicon/ilbmtoicon.c @@ -531,7 +531,6 @@ static void skipbytes(ULONG howmany) static void openimage(struct ILBMImage *img) { file = fopen(filename, "rb"); -printf("filename %s\n", filename); if (!file) cleanup("Can't open file!", 1); fseek(file, 0, SEEK_END); @@ -1932,7 +1931,6 @@ static void writepngicon(void) /* Handle the case where 2 PNG images are just joined together to one file. */ long bytecnt = filebuffer + filesize - dualpngstart; -printf("bytecnt %ld filesize %ld dualpngstart %x filebuffer %x\n", bytecnt, filesize, dualpngstart, filebuffer); if (fwrite(dualpngstart, 1, bytecnt, outfile) != bytecnt) { cleanup("Error writing dual PNG icon file!", 1); -- 2.11.4.GIT