diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-01-01 09:42:07 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-01-01 09:42:07 +0000 |
commit | 1909fc0adcd8bec6f0179382c1788cfa146499e1 (patch) | |
tree | efec13c738e00b2cf3a247a09a5fc477d7b36f76 | |
parent | a23b06770d509f6b54b86dbdd97dc3c9e6a1c7ea (diff) | |
download | pngtoico-1909fc0adcd8bec6f0179382c1788cfa146499e1.tar.gz pngtoico-1909fc0adcd8bec6f0179382c1788cfa146499e1.tar.xz pngtoico-1909fc0adcd8bec6f0179382c1788cfa146499e1.zip |
Remove debugging printfs
-rw-r--r-- | pngtoico.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -292,12 +292,9 @@ read_png(const char *file) if ( ptran == 0 ) { pixel = 0; - fprintf(stderr, "."); } else if ( ptran != 255 ) { fprintf(stderr, "%s: Warning: partial transparency (%d/255) ignored\n", file, ptran); - } else { - fprintf(stderr, "%x", pixel); } *dbyte |= pixel << dshift; |