]> gitweb.hhaalo.de Git - sane-kds-s2000w-net.git/commitdiff
fix debug print messages
authorBastian Dehn <hhaalo@arcor.de>
Tue, 23 Sep 2025 11:38:54 +0000 (13:38 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Tue, 23 Sep 2025 11:38:54 +0000 (13:38 +0200)
src/kds_s2000w_option_descriptors.c

index c586b40e6a09a754eb36721c9bc7f060329468fb..893a9b9067187d76b66f451048160411f4416cd9 100644 (file)
@@ -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;