builtin/bundle.c: indent with tabs

Fix indentation issues introduced with 73c3253d75 (bundle: framework
for options before bundle file, 2019-11-10), and carried forward in
some subsequent commits.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason
2022-10-13 17:38:57 +02:00
committed by Junio C Hamano
parent 6584fcc5c8
commit 968a04e447

View File

@ -12,31 +12,31 @@
*/ */
static const char * const builtin_bundle_usage[] = { static const char * const builtin_bundle_usage[] = {
N_("git bundle create [<options>] <file> <git-rev-list args>"), N_("git bundle create [<options>] <file> <git-rev-list args>"),
N_("git bundle verify [<options>] <file>"), N_("git bundle verify [<options>] <file>"),
N_("git bundle list-heads <file> [<refname>...]"), N_("git bundle list-heads <file> [<refname>...]"),
N_("git bundle unbundle <file> [<refname>...]"), N_("git bundle unbundle <file> [<refname>...]"),
NULL NULL
}; };
static const char * const builtin_bundle_create_usage[] = { static const char * const builtin_bundle_create_usage[] = {
N_("git bundle create [<options>] <file> <git-rev-list args>"), N_("git bundle create [<options>] <file> <git-rev-list args>"),
NULL NULL
}; };
static const char * const builtin_bundle_verify_usage[] = { static const char * const builtin_bundle_verify_usage[] = {
N_("git bundle verify [<options>] <file>"), N_("git bundle verify [<options>] <file>"),
NULL NULL
}; };
static const char * const builtin_bundle_list_heads_usage[] = { static const char * const builtin_bundle_list_heads_usage[] = {
N_("git bundle list-heads <file> [<refname>...]"), N_("git bundle list-heads <file> [<refname>...]"),
NULL NULL
}; };
static const char * const builtin_bundle_unbundle_usage[] = { static const char * const builtin_bundle_unbundle_usage[] = {
N_("git bundle unbundle <file> [<refname>...]"), N_("git bundle unbundle <file> [<refname>...]"),
NULL NULL
}; };
static int parse_options_cmd_bundle(int argc, static int parse_options_cmd_bundle(int argc,