log: drop unused rev_info from early output
authorJeff King <peff@peff.net>
Wed, 20 Mar 2019 08:13:42 +0000 (04:13 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 20 Mar 2019 09:34:08 +0000 (18:34 +0900)
commit7954d365c64fd5cb854cf477aab3c12b8ff43f42
tree507488a3c02602bc83c195443c5bb7d25dc5f39f
parent9163399535c43b6764376a280c2551600e8cd5bc
log: drop unused rev_info from early output

The early output code passes around a rev_info struct but doesn't need
it. The setup step only turns on global signal handlers, and the
"estimate" step is done completely from the rev->commits list that is
passed in separately.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/log.c