expire_reflog(): it's not an each_ref_fn anymore
Prior to v1.5.4~14, expire_reflog() had to be an each_ref_fn because it was passed to for_each_reflog(). Since then, there has been no reason for it to implement the each_ref_fn interface. So... * Remove the "unused" parameter (which took the place of "flags", but was really unused). * Declare the last parameter to be (struct cmd_reflog_expire_cb *) rather than (void *). Helped-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
2c6207abbd
commit
55dfc8de18
@ -349,9 +349,9 @@ static int push_tip_to_list(const char *refname, const unsigned char *sha1, int
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int expire_reflog(const char *ref, const unsigned char *sha1, int unused, void *cb_data)
|
static int expire_reflog(const char *ref, const unsigned char *sha1,
|
||||||
|
struct cmd_reflog_expire_cb *cmd)
|
||||||
{
|
{
|
||||||
struct cmd_reflog_expire_cb *cmd = cb_data;
|
|
||||||
struct expire_reflog_cb cb;
|
struct expire_reflog_cb cb;
|
||||||
struct ref_lock *lock;
|
struct ref_lock *lock;
|
||||||
char *log_file, *newlog_path = NULL;
|
char *log_file, *newlog_path = NULL;
|
||||||
@ -663,7 +663,7 @@ static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
|
|||||||
for (i = 0; i < collected.nr; i++) {
|
for (i = 0; i < collected.nr; i++) {
|
||||||
struct collected_reflog *e = collected.e[i];
|
struct collected_reflog *e = collected.e[i];
|
||||||
set_reflog_expiry_param(&cb, explicit_expiry, e->reflog);
|
set_reflog_expiry_param(&cb, explicit_expiry, e->reflog);
|
||||||
status |= expire_reflog(e->reflog, e->sha1, 0, &cb);
|
status |= expire_reflog(e->reflog, e->sha1, &cb);
|
||||||
free(e);
|
free(e);
|
||||||
}
|
}
|
||||||
free(collected.e);
|
free(collected.e);
|
||||||
@ -677,7 +677,7 @@ static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
set_reflog_expiry_param(&cb, explicit_expiry, ref);
|
set_reflog_expiry_param(&cb, explicit_expiry, ref);
|
||||||
status |= expire_reflog(ref, sha1, 0, &cb);
|
status |= expire_reflog(ref, sha1, &cb);
|
||||||
}
|
}
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
@ -748,7 +748,7 @@ static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
|
|||||||
cb.expire_total = 0;
|
cb.expire_total = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
status |= expire_reflog(ref, sha1, 0, &cb);
|
status |= expire_reflog(ref, sha1, &cb);
|
||||||
free(ref);
|
free(ref);
|
||||||
}
|
}
|
||||||
return status;
|
return status;
|
||||||
|
Loading…
Reference in New Issue
Block a user