From bd2959e1d0bccc9c29ff153841948900be933461 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Tue, 23 Sep 2025 13:38:54 +0200 Subject: [PATCH] fix debug print messages --- src/kds_s2000w_option_descriptors.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/kds_s2000w_option_descriptors.c b/src/kds_s2000w_option_descriptors.c index c586b40..893a9b9 100644 --- a/src/kds_s2000w_option_descriptors.c +++ b/src/kds_s2000w_option_descriptors.c @@ -1247,7 +1247,7 @@ void _kds_s2000w_option_descriptors_init_full_profile() void kds_s2000w_option_descriptors_init(uint8_t profile) { - kds_s2000w_debug_printf(ALL, "kds_s2000w_option_descriptor_init_option_descriptors"); + kds_s2000w_debug_printf(ALL, "kds_s2000w_option_descriptors_init"); if (profile == PROFILE_FULL) { _kds_s2000w_option_descriptors_init_full_profile(); @@ -1259,7 +1259,7 @@ void kds_s2000w_option_descriptors_init(uint8_t profile) void kds_s2000w_option_descriptors_free() { - kds_s2000w_debug_printf(ALL, "kds_s2000w_option_descriptor_free_option_descriptors"); + kds_s2000w_debug_printf(ALL, "kds_s2000w_option_descriptors_free"); for (int i = 0; i < max_option_count; i++) { if (descriptors[i]->descriptor.constraint_type == SANE_CONSTRAINT_STRING_LIST) { @@ -1302,7 +1302,7 @@ option_descriptor* kds_s2000w_option_descriptor_full_get_by_number(uint32_t numb SANE_Option_Descriptor* kds_s2000w_option_descriptors_get_by_number(uint32_t number) { - kds_s2000w_debug_printf(ALL, "kds_s2000w_option_get_descriptor"); + kds_s2000w_debug_printf(ALL, "kds_s2000w_option_descriptors_get_by_number"); if (number >= max_option_count) return NULL; -- 2.47.3