diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-01-14 15:29:32 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-01-14 15:29:32 -0800 |
commit | f2b6aa98be15458e4741274441541ee071e36f63 (patch) | |
tree | 95038ab830afcb7afbc1573ef5b9f75a2e4db780 /builtin | |
parent | Merge branch 'en/directory-renames-nothanks-doc-update' (diff) | |
parent | Indent code with TABs (diff) | |
download | tgif-f2b6aa98be15458e4741274441541ee071e36f63.tar.xz |
Merge branch 'nd/indentation-fix'
Code cleanup.
* nd/indentation-fix:
Indent code with TABs
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/add.c | 2 | ||||
-rw-r--r-- | builtin/gc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/builtin/add.c b/builtin/add.c index f65c172299..12247b48fd 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -176,7 +176,7 @@ static void refresh(int verbose, const struct pathspec *pathspec) die(_("pathspec '%s' did not match any files"), pathspec->items[i].match); } - free(seen); + free(seen); } int run_add_interactive(const char *revision, const char *patch_mode, diff --git a/builtin/gc.c b/builtin/gc.c index 871a56f1c5..7696017cd4 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -317,7 +317,7 @@ static void add_repack_all_option(struct string_list *keep_pack) static void add_repack_incremental_option(void) { - argv_array_push(&repack, "--no-write-bitmap-index"); + argv_array_push(&repack, "--no-write-bitmap-index"); } static int need_to_gc(void) |