mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Fix code indentation violations introduced by recent commit
The two culprit commits are5765cfe
and5e0c761
. Per buildfarm member koel for the first commit, while I have noticed the second one in passing.
This commit is contained in:
@ -6280,16 +6280,16 @@ void
|
||||
ProcessGUCArray(ArrayType *array,
|
||||
GucContext context, GucSource source, GucAction action)
|
||||
{
|
||||
List *gucNames;
|
||||
List *gucValues;
|
||||
ListCell *lc1;
|
||||
ListCell *lc2;
|
||||
List *gucNames;
|
||||
List *gucValues;
|
||||
ListCell *lc1;
|
||||
ListCell *lc2;
|
||||
|
||||
TransformGUCArray(array, &gucNames, &gucValues);
|
||||
forboth(lc1, gucNames, lc2, gucValues)
|
||||
{
|
||||
char *name = lfirst(lc1);
|
||||
char *value = lfirst(lc2);
|
||||
char *name = lfirst(lc1);
|
||||
char *value = lfirst(lc2);
|
||||
|
||||
(void) set_config_option(name, value,
|
||||
context, source,
|
||||
|
Reference in New Issue
Block a user