diff options
author | Jacob Keller <jacob.keller@gmail.com> | 2016-08-31 16:27:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-31 18:07:10 -0700 |
commit | 602a283afb225ea094f4582e02e94cfd7f5cabf0 (patch) | |
tree | 1d85b1ee06d04791e238c036c0e222c9081e18a1 /submodule.h | |
parent | 99b43a61f2daf5fe183056e5bf2a75a8a81a28bf (diff) | |
download | git-602a283afb225ea094f4582e02e94cfd7f5cabf0.tar.gz |
submodule: convert show_submodule_summary to use struct object_id *
Since we're going to be changing this function in a future patch, lets
go ahead and convert this to use object_id now.
Signed-off-by: Jacob Keller <jacob.keller@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule.h')
-rw-r--r-- | submodule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/submodule.h b/submodule.h index 2af9390998..d83df57e24 100644 --- a/submodule.h +++ b/submodule.h @@ -43,7 +43,7 @@ const char *submodule_strategy_to_string(const struct submodule_update_strategy void handle_ignore_submodules_arg(struct diff_options *diffopt, const char *); void show_submodule_summary(FILE *f, const char *path, const char *line_prefix, - unsigned char one[20], unsigned char two[20], + struct object_id *one, struct object_id *two, unsigned dirty_submodule, const char *meta, const char *del, const char *add, const char *reset); void set_config_fetch_recurse_submodules(int value); |