summaryrefslogtreecommitdiff
path: root/rev-list.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2006-05-05 14:54:43 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2006-05-05 14:54:43 -0700
commita814deca8b42e43fa6bbcfed1c2fe93131722b31 (patch)
treea3eef25f30690b6dc758ad2ae714d00581f581bf /rev-list.c
parentMerge branch 'jc/cache-tree' into next (diff)
parentTeach fmt-patch about --keep-subject (diff)
downloadtgif-a814deca8b42e43fa6bbcfed1c2fe93131722b31.tar.xz
Merge branch 'js/fmt-patch' into next
* js/fmt-patch: Teach fmt-patch about --keep-subject Teach fmt-patch about --numbered fmt-patch: implement -o <dir> fmt-patch: output file names to stdout Teach fmt-patch to write individual files.
Diffstat (limited to 'rev-list.c')
-rw-r--r--rev-list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rev-list.c b/rev-list.c
index 8b0ec388fa..235ae4c7e1 100644
--- a/rev-list.c
+++ b/rev-list.c
@@ -84,7 +84,7 @@ static void show_commit(struct commit *commit)
static char pretty_header[16384];
pretty_print_commit(revs.commit_format, commit, ~0,
pretty_header, sizeof(pretty_header),
- revs.abbrev);
+ revs.abbrev, NULL);
printf("%s%c", pretty_header, hdr_termination);
}
fflush(stdout);