From: Bastian Dehn Date: Sun, 9 Nov 2025 07:59:34 +0000 (+0100) Subject: remove debug from type check module X-Git-Tag: v1.1.21^2~13 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=da9ec2dd1cc6c30610a8c09113a63cd23ab8d178;p=sane-kds-s2000w-net.git remove debug from type check module --- diff --git a/src/kds_s2000w_image_type_check.c b/src/kds_s2000w_image_type_check.c index 6578227..3793972 100644 --- a/src/kds_s2000w_image_type_check.c +++ b/src/kds_s2000w_image_type_check.c @@ -1,11 +1,8 @@ #include -#include "kds_s2000w_debug.h" #include "kds_s2000w_image_type_check.h" bool kds_s2000w_image_type_check_is_tiff(const blobdata_t* image) { - kds_s2000w_debug_printf(ALL, "kds_s2000w_image_type_check_is_tiff"); - if (image->size < 4) return 0; @@ -18,8 +15,6 @@ bool kds_s2000w_image_type_check_is_tiff(const blobdata_t* image) bool kds_s2000w_image_type_check_is_pnm(const blobdata_t* image) { - kds_s2000w_debug_printf(ALL, "kds_s2000w_image_type_check_is_pnm"); - if (image->size < 2) return 0; @@ -32,8 +27,6 @@ bool kds_s2000w_image_type_check_is_pnm(const blobdata_t* image) bool kds_s2000w_image_type_check_is_jpeg(const blobdata_t* image) { - kds_s2000w_debug_printf(ALL, "kds_s2000w_image_type_check_is_jpeg"); - if (image->size < 2) return 0;