mirror of
https://github.com/postgres/postgres.git
synced 2026-05-25 02:40:42 -04:00
style: define parameterless functions as foo(void).
Avoids warning in 'update-unicode' build target. Similar to
11171fe1fc.
Discussion: https://postgr.es/m/581a72ff452bb045ba83bbe3c6cf4467702d4f0f.camel@j-davis.com
This commit is contained in:
parent
79fba6ebab
commit
59919ec776
2 changed files with 2 additions and 2 deletions
|
|
@ -329,7 +329,7 @@ tfunc_fold(char *dst, size_t dstsize, const char *src,
|
|||
}
|
||||
|
||||
static void
|
||||
test_convert_case()
|
||||
test_convert_case(void)
|
||||
{
|
||||
/* test string with no case changes */
|
||||
test_convert(tfunc_lower, "√∞", "√∞");
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ parse_unicode_version(const char *version)
|
|||
* White_Space, and Hex_Digit.
|
||||
*/
|
||||
static void
|
||||
icu_test()
|
||||
icu_test(void)
|
||||
{
|
||||
int successful = 0;
|
||||
int pg_skipped_codepoints = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue