diff options
author | Peter Geoghegan | 2024-06-12 22:04:10 +0000 |
---|---|---|
committer | Peter Geoghegan | 2024-06-12 22:04:10 +0000 |
commit | 99b99285e5438ee8b0c065db58e87e6577158d22 (patch) | |
tree | abcc510bfeda719e637380a8f14740397ea64f3e /src/tools/pg_bsd_indent/indent.c | |
parent | 6207f08f700ddc874765919202727fb0171b5403 (diff) |
Harmonize pg_bsd_indent parameter names.
Make sure that function declarations use names that exactly match the
corresponding names from function definitions in pg_bsd_indent.
This commit was written with help from clang-tidy, by mechanically
applying the same rules as similar clean-up commits.
Discussion: https://postgr.es/m/CAH2-WzkaBS8w-vCbG5M5Bx7XikC0WhNLJV_+Z_YAWW9Kef6OBQ@mail.gmail.com
Diffstat (limited to 'src/tools/pg_bsd_indent/indent.c')
-rw-r--r-- | src/tools/pg_bsd_indent/indent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/pg_bsd_indent/indent.c b/src/tools/pg_bsd_indent/indent.c index 923fc34b858..2622cc6227a 100644 --- a/src/tools/pg_bsd_indent/indent.c +++ b/src/tools/pg_bsd_indent/indent.c @@ -54,7 +54,7 @@ static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93"; #include "indent.h" static void bakcopy(void); -static void indent_declaration(int, int); +static void indent_declaration(int cur_dec_ind, int tabs_to_var); const char *in_name = "Standard Input"; /* will always point to name of input * file */ |