From 5f6eb961a0aee3fb759af002ed28f40e8a1c469e Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Fri, 27 Jun 2025 10:24:19 -0400 Subject: [PATCH] pgindent --- contrib/pg_plan_advice/pgpa_output.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/contrib/pg_plan_advice/pgpa_output.c b/contrib/pg_plan_advice/pgpa_output.c index 60f8883abc..2c101090a6 100644 --- a/contrib/pg_plan_advice/pgpa_output.c +++ b/contrib/pg_plan_advice/pgpa_output.c @@ -40,7 +40,7 @@ pgpa_output_advice(StringInfo buf, pgpa_plan_walker_context *walker, const char **rt_identifiers) { ListCell *lc; - pgpa_output_context context; + pgpa_output_context context; context.rt_identifiers = rt_identifiers; context.buf = buf; @@ -244,9 +244,9 @@ pgpa_cstring_join_strategy(pgpa_join_strategy strategy) static void pgpa_maybe_linebreak(StringInfo buf, int wrap_column) { - char *trailing_nl; - int line_start; - int save_cursor; + char *trailing_nl; + int line_start; + int save_cursor; /* If line wrapping is disabled, exit quickly. */ if (wrap_column <= 0) @@ -265,8 +265,8 @@ pgpa_maybe_linebreak(StringInfo buf, int wrap_column) line_start = (trailing_nl - buf->data) + 1; /* - * Remember that the current end of the buffer is a potential location - * to insert a line break on a future call to this function. + * Remember that the current end of the buffer is a potential location to + * insert a line break on a future call to this function. */ save_cursor = buf->cursor; buf->cursor = buf->len; -- 2.39.5