Fix bad indentation introduced in 43cd30bcd1c
authorAndres Freund <[email protected]>
Mon, 15 Jul 2024 22:17:25 +0000 (15:17 -0700)
committerAndres Freund <[email protected]>
Mon, 15 Jul 2024 22:17:25 +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 0b6f2769dd9c39ca650dc834c97c6a12fd20bc6c..15e3e5091374716c6b214c2f663073f80af5a919 100644 (file)
@@ -5552,8 +5552,8 @@ find_option(const char *name, bool create_placeholders, bool skip_errors,
 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);
 }