Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-12-22 11:26:16 +0400
committerJunio C Hamano <gitster@pobox.com>2012-12-22 11:55:10 +0400
commit021f2f4c1aed011c664844408325fe683a4046a8 (patch)
treeeb9774b7f51800a2e2e8171760d1d6f58eb653bc /log-tree.h
parent68cb7b6f85aa032c33e49137364da9b76b1d95a1 (diff)
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>
Diffstat (limited to 'log-tree.h')
-rw-r--r--log-tree.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/log-tree.h b/log-tree.h
index f5ac238bba..c6a944a838 100644
--- a/log-tree.h
+++ b/log-tree.h
@@ -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