From: Patrick Steinhardt Date: Wed, 7 May 2025 07:21:37 +0000 (+0200) Subject: builtin/gc: fix indentation of `cmd_gc()` parameters X-Git-Tag: v2.50.0-rc0~40^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58f62837fb42fe602ceaea50f4666d98e278acbe;p=thirdparty%2Fgit.git builtin/gc: fix indentation of `cmd_gc()` parameters The parameters of `cmd_gc()` aren't indented properly. Fix this. Signed-off-by: Patrick Steinhardt Signed-off-by: Junio C Hamano --- diff --git a/builtin/gc.c b/builtin/gc.c index a5b86bbf16..d24cc7105b 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -728,9 +728,9 @@ static void gc_before_repack(struct maintenance_run_opts *opts, } int cmd_gc(int argc, -const char **argv, -const char *prefix, -struct repository *repo UNUSED) + const char **argv, + const char *prefix, + struct repository *repo UNUSED) { int aggressive = 0; int quiet = 0;