Fix bad indentation introduced in 43cd30bcd1c
authorAndres Freund <[email protected]>
Mon, 15 Jul 2024 22:17:18 +0000 (15:17 -0700)
committerAndres Freund <[email protected]>
Mon, 15 Jul 2024 22:17:18 +0000 (15:17 -0700)
Oops.

Reported-by: Nathan Bossart <[email protected]>
Discussion: https://postgr.es/m/ZpVZB9rH5tHllO75@nathan
Backpatch: 12-, like 43cd30bcd1c

src/backend/utils/misc/guc.c

index 8aaab1c10be0906ccae893617383a39b43b037aa..f4ca61201480b475069c5c2425091e3871c4aa92 100644 (file)
@@ -5060,8 +5060,8 @@ find_option(const char *name, bool create_placeholders, int elevel)
 static int
 guc_var_compare(const void *a, const void *b)
 {
-   const char *namea = **(const char ** const *) a;
-   const char *nameb = **(const char ** const *) b;
+   const char *namea = **(const char **const *) a;
+   const char *nameb = **(const char **const *) b;
 
    return guc_name_compare(namea, nameb);
 }