From 23a37ecac4bba997948fa30e72eb4aa8e317e394 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 25 May 2020 23:33:11 -0700 Subject: [PATCH] Get indent right. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index 09dc5f22..04b84a72 100644 --- a/options.c +++ b/options.c @@ -674,7 +674,7 @@ static void print_capabilities(enum logcode f) int cap_len = cap ? strlen(cap) : 1000; int need_comma = cap && capabilities[cnt+1] != NULL ? 1 : 0; if (line_len + 1 + cap_len + need_comma >= (int)sizeof line_buf) { - rprintf(f, " %s\n", line_buf); + rprintf(f, " %s\n", line_buf); line_len = 0; } if (!cap) -- 2.47.3