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/rm.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/rm.c')
-rw-r--r-- | builtin/rm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |