diff options
author | Álvaro Herrera | 2024-11-26 16:10:07 +0000 |
---|---|---|
committer | Álvaro Herrera | 2024-11-26 16:10:07 +0000 |
commit | e6c32d9fad18f5a1dcb13c13f02445061b60523b (patch) | |
tree | 21723768ff5e3e0f75e71749d943e0ea88f30987 /src/backend/utils/adt/pg_locale.c | |
parent | 2a7b2d97171dd39dca7cefb91008a3c84ec003ba (diff) |
Clean up newlines following left parentheses
Most came in during the 17 cycle, so backpatch there. Some
(particularly reorderbuffer.h) are very old, but backpatching doesn't
seem useful.
Like commits c9d297751959, c4f113e8fef9.
Diffstat (limited to 'src/backend/utils/adt/pg_locale.c')
-rw-r--r-- | src/backend/utils/adt/pg_locale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c index d4e89663ec1..06cc42c1f04 100644 --- a/src/backend/utils/adt/pg_locale.c +++ b/src/backend/utils/adt/pg_locale.c @@ -1374,8 +1374,8 @@ init_database_collation(void) default_locale.collate_is_c = true; default_locale.ctype_is_c = (strcmp(datlocale, "C") == 0); - default_locale.info.builtin.locale = MemoryContextStrdup( - TopMemoryContext, datlocale); + default_locale.info.builtin.locale = MemoryContextStrdup(TopMemoryContext, + datlocale); } else if (dbform->datlocprovider == COLLPROVIDER_ICU) { |