mirror of
https://github.com/git/git.git
synced 2026-01-20 22:07:19 +09:00
submodule: eliminate unused parameters from print_submodule_summary()
Eliminate the parameters 'missing_{src,dst}' from the
'print_submodule_summary()' function call since they are not used
anywhere in the function.
Reported-by: Jeff King <peff@peff.net>
Mentored-by: Christian Couder <chriscool@tuxfamily.org>
Mentored-by: Kaartic Sivaraam <kaartic.sivaraam@gmail.com>
Signed-off-by: Shourya Shukla <shouryashukla.oo@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e83e3333b5
commit
e0f7ae564e
@ -982,7 +982,6 @@ static char* verify_submodule_committish(const char *sm_path,
|
||||
static void print_submodule_summary(struct summary_cb *info, char* errmsg,
|
||||
int total_commits, const char *displaypath,
|
||||
const char *src_abbrev, const char *dst_abbrev,
|
||||
int missing_src, int missing_dst,
|
||||
struct module_cb *p)
|
||||
{
|
||||
if (p->status == 'T') {
|
||||
@ -1154,8 +1153,7 @@ static void generate_submodule_summary(struct summary_cb *info,
|
||||
|
||||
print_submodule_summary(info, errmsg, total_commits,
|
||||
displaypath, src_abbrev,
|
||||
dst_abbrev, missing_src,
|
||||
missing_dst, p);
|
||||
dst_abbrev, p);
|
||||
|
||||
free(displaypath);
|
||||
free(src_abbrev);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user