From 968a04e4478dff3aacbdd225e436fc2ec1c6a76a Mon Sep 17 00:00:00 2001 From: Ævar Arnfjörð Bjarmason Date: Thu, 13 Oct 2022 17:38:57 +0200 Subject: builtin/bundle.c: indent with tabs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix indentation issues introduced with 73c3253d75e (bundle: framework for options before bundle file, 2019-11-10), and carried forward in some subsequent commits. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- builtin/bundle.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'builtin/bundle.c') diff --git a/builtin/bundle.c b/builtin/bundle.c index e80efce3a4..5c78894afd 100644 --- a/builtin/bundle.c +++ b/builtin/bundle.c @@ -12,31 +12,31 @@ */ static const char * const builtin_bundle_usage[] = { - N_("git bundle create [] "), - N_("git bundle verify [] "), - N_("git bundle list-heads [...]"), - N_("git bundle unbundle [...]"), - NULL + N_("git bundle create [] "), + N_("git bundle verify [] "), + N_("git bundle list-heads [...]"), + N_("git bundle unbundle [...]"), + NULL }; static const char * const builtin_bundle_create_usage[] = { - N_("git bundle create [] "), - NULL + N_("git bundle create [] "), + NULL }; static const char * const builtin_bundle_verify_usage[] = { - N_("git bundle verify [] "), - NULL + N_("git bundle verify [] "), + NULL }; static const char * const builtin_bundle_list_heads_usage[] = { - N_("git bundle list-heads [...]"), - NULL + N_("git bundle list-heads [...]"), + NULL }; static const char * const builtin_bundle_unbundle_usage[] = { - N_("git bundle unbundle [...]"), - NULL + N_("git bundle unbundle [...]"), + NULL }; static int parse_options_cmd_bundle(int argc, -- cgit v1.2.3