]> gitweb.hhaalo.de Git - sane-kds-s2000w-net.git/commitdiff
remove debug from type check module
authorBastian Dehn <hhaalo@arcor.de>
Sun, 9 Nov 2025 07:59:34 +0000 (08:59 +0100)
committerBastian Dehn <hhaalo@arcor.de>
Sun, 9 Nov 2025 07:59:34 +0000 (08:59 +0100)
src/kds_s2000w_image_type_check.c

index 657822750118900169b101d3bdae23d5e0d8a1e1..3793972a4ff5b04871705242de282c7f46cb15b4 100644 (file)
@@ -1,11 +1,8 @@
 #include <string.h>
-#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;