Skip to content

Commit 3006fd8

Browse files
committed
Fix bad indentation introduced in 43cd30b
Oops. Reported-by: Nathan Bossart <nathandbossart@gmail.com> Discussion: https://postgr.es/m/ZpVZB9rH5tHllO75@nathan Backpatch: 12-, like 43cd30b
1 parent ee89c4f commit 3006fd8

File tree

1 file changed

+2
-2
lines changed
  • src/backend/utils/misc

1 file changed

+2
-2
lines changed

src/backend/utils/misc/guc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5552,8 +5552,8 @@ find_option(const char *name, bool create_placeholders, bool skip_errors,
55525552
static int
55535553
guc_var_compare(const void *a, const void *b)
55545554
{
5555-
const char *namea = **(const char ** const *) a;
5556-
const char *nameb = **(const char ** const *) b;
5555+
const char *namea = **(const char **const *) a;
5556+
const char *nameb = **(const char **const *) b;
55575557

55585558
return guc_name_compare(namea, nameb);
55595559
}

0 commit comments

Comments
 (0)