* lib/unictype/categ_none.c (_UC_CATEGORY_NONE): Use ISO C designated
initializer syntax to initialize the intended field of the union.
2023-09-07 Bruno Haible <bruno@clisp.org>
+ 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.
+
c-*snprintf: Fix some clang -Wmissing-prototypes warnings.
* lib/c-snprintf.c: Include c-snprintf.h instead of <stdio.h>.
* lib/c-vsnprintf.c: Include c-vsnprintf.h instead of <stdio.h>.
}
const uc_general_category_t _UC_CATEGORY_NONE =
- { 0, 1, { &always_false } };
+ { 0, 1, { .lookup_fn = &always_false } };