about summary refs log tree commit diff
path: root/converter/other/yuy2topam.c
diff options
context:
space:
mode:
Diffstat (limited to 'converter/other/yuy2topam.c')
-rw-r--r--converter/other/yuy2topam.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/converter/other/yuy2topam.c b/converter/other/yuy2topam.c
index 2c120523..3ce64f5d 100644
--- a/converter/other/yuy2topam.c
+++ b/converter/other/yuy2topam.c
@@ -194,7 +194,6 @@ static void
 rgbToTuple(Rgb   const rgb,
            tuple const out) {
 
-    pm_message("r=%d,g=%d,b=%d", rgb.r, rgb.g, rgb.b);
     out[PAM_RED_PLANE] = MIN(255, MAX(0, rgb.r));
     out[PAM_GRN_PLANE] = MIN(255, MAX(0, rgb.g));
     out[PAM_BLU_PLANE] = MIN(255, MAX(0, rgb.b));