* tests/test-execute-main.c (main): Add 'break' statement.
* tests/test-sys_file.c (main): Likewise.
2023-09-07 Bruno Haible <bruno@clisp.org>
+ tests: Fix some clang -Wimplicit-fallthrough warnings.
+ * tests/test-execute-main.c (main): Add 'break' statement.
+ * tests/test-sys_file.c (main): Likewise.
+
unictype/category-none: Fix clang -Wpedantic warning.
* lib/unictype/categ_none.c (_UC_CATEGORY_NONE): Use ISO C designated
initializer syntax to initialize the intended field of the union.
for (fd = 3; fd < 20; fd++)
close (fd);
}
+ break;
default:
break;
}
case LOCK_EX:
case LOCK_NB:
case LOCK_UN:
- ;
+ break;
default:
- ;
+ break;
}
return 0;
}