diff options
author | Brandon Williams <bmwill@google.com> | 2017-12-12 11:53:50 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-12-12 12:35:20 -0800 |
commit | 3b8317a9e6f1538c99074eeffd4b27ac18de5648 (patch) | |
tree | 3284b939162e3e2e2cd23182c5372025fa9521a8 /builtin | |
parent | RelNotes: the eighth batch (diff) | |
download | tgif-3b8317a9e6f1538c99074eeffd4b27ac18de5648.tar.xz |
submodule: convert stage_updated_gitmodules to take a struct index_state
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/mv.c | 2 | ||||
-rw-r--r-- | builtin/rm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/builtin/mv.c b/builtin/mv.c index ffdd5f01a1..cf3684d907 100644 --- a/builtin/mv.c +++ b/builtin/mv.c @@ -291,7 +291,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix) } if (gitmodules_modified) - stage_updated_gitmodules(); + stage_updated_gitmodules(&the_index); if (active_cache_changed && write_locked_index(&the_index, &lock_file, COMMIT_LOCK)) diff --git a/builtin/rm.c b/builtin/rm.c index d91451fea1..4a2fcca27b 100644 --- a/builtin/rm.c +++ b/builtin/rm.c @@ -382,7 +382,7 @@ int cmd_rm(int argc, const char **argv, const char *prefix) } strbuf_release(&buf); if (gitmodules_modified) - stage_updated_gitmodules(); + stage_updated_gitmodules(&the_index); } if (active_cache_changed) { |