diff options
author | Brandon Williams <bmwill@google.com> | 2017-12-12 20:53:50 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-12-12 21:35:20 +0100 |
commit | 3b8317a9e6f1538c99074eeffd4b27ac18de5648 (patch) | |
tree | 3284b939162e3e2e2cd23182c5372025fa9521a8 /builtin/mv.c | |
parent | RelNotes: the eighth batch (diff) | |
download | git-3b8317a9e6f1538c99074eeffd4b27ac18de5648.tar.xz git-3b8317a9e6f1538c99074eeffd4b27ac18de5648.zip |
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/mv.c')
-rw-r--r-- | builtin/mv.c | 2 |
1 files changed, 1 insertions, 1 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)) |