aboutsummaryrefslogtreecommitdiff
path: root/builtin/log.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-12-21 23:26:16 -0800
committerJunio C Hamano <gitster@pobox.com>2012-12-21 23:55:10 -0800
commit021f2f4c1aed011c664844408325fe683a4046a8 (patch)
treeeb9774b7f51800a2e2e8171760d1d6f58eb653bc /builtin/log.c
parent68cb7b6f85aa032c33e49137364da9b76b1d95a1 (diff)
downloadgit-021f2f4c1aed011c664844408325fe683a4046a8.tar.gz
git-021f2f4c1aed011c664844408325fe683a4046a8.tar.xz
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 'builtin/log.c')
-rw-r--r--builtin/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/log.c b/builtin/log.c
index 7cf157e3e..d9946ecd2 100644
--- a/builtin/log.c
+++ b/builtin/log.c
@@ -684,7 +684,7 @@ static int reopen_stdout(struct commit *commit, const char *subject,
strbuf_addch(&filename, '/');
}
- get_patch_filename(commit, subject, rev->nr, rev->patch_suffix, &filename);
+ get_patch_filename(&filename, commit, subject, rev);
if (!quiet)
fprintf(realstdout, "%s\n", filename.buf + outdir_offset);