get_patch_filename(): simplify function signature
Most functions that emit to a strbuf take the strbuf as their first parameter; make this function follow suit. The serial number of the patch being emitted (nr) and suffix used for patch filename (suffix) are both recorded in rev_info; drop these separate parameters and pass the rev_info directly. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
@ -21,7 +21,8 @@ void log_write_email_headers(struct rev_info *opt, struct commit *commit,
|
||||
void load_ref_decorations(int flags);
|
||||
|
||||
#define FORMAT_PATCH_NAME_MAX 64
|
||||
void get_patch_filename(struct commit *commit, const char *subject, int nr,
|
||||
const char *suffix, struct strbuf *buf);
|
||||
void get_patch_filename(struct strbuf *buf,
|
||||
struct commit *commit, const char *subject,
|
||||
struct rev_info *);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user