]> gitweb.hhaalo.de Git - sane-kds-s2000w-net.git/commitdiff
fix indentation test file
authorBastian Dehn <hhaalo@arcor.de>
Sat, 13 Jun 2026 07:45:31 +0000 (09:45 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sat, 13 Jun 2026 07:45:31 +0000 (09:45 +0200)
tests/tests.c

index 4e39ed915ed7a6bde70627a6c87deb282d4bcf8d..cc53d114419b0fb2e791cc37bbbe58bc80431322 100644 (file)
@@ -14,23 +14,23 @@ int run_kds_s2000w_pixel_converter_tests();
 
 int main()
 {
-    testgroupfn testgroups[] = {
-        run_kds_s2000w_net_get_opt_tests,
-        run_kds_s2000w_net_set_opt_tests,
-        run_kds_s2000w_net_read_tests,
-        run_kds_s2000w_net_tests,
-        run_kds_s2000w_read_config_tests,
-        run_kds_s2000w_image_converter_tests,
-        run_kds_s2000w_option_descriptor_tests,
-        run_kds_s2000w_image_type_check_tests,
-        run_kds_s2000w_pixel_converter_tests,
-    };
+       testgroupfn testgroups[] = {
+               run_kds_s2000w_net_get_opt_tests,
+               run_kds_s2000w_net_set_opt_tests,
+               run_kds_s2000w_net_read_tests,
+               run_kds_s2000w_net_tests,
+               run_kds_s2000w_read_config_tests,
+               run_kds_s2000w_image_converter_tests,
+               run_kds_s2000w_option_descriptor_tests,
+               run_kds_s2000w_image_type_check_tests,
+               run_kds_s2000w_pixel_converter_tests,
+       };
 
-    size_t count = sizeof(testgroups) / sizeof(testgroupfn);
-    for (size_t i = 0; i < count; i++) {
-        if (testgroups[i]())
-            return 1;
-    }
+       size_t count = sizeof(testgroups) / sizeof(testgroupfn);
+       for (size_t i = 0; i < count; i++) {
+               if (testgroups[i]())
+                       return 1;
+       }
 
-    return 0;
-}
\ No newline at end of file
+       return 0;
+}