From 967cf9867de7c49393dfc666c941a1861d159639 Mon Sep 17 00:00:00 2001 From: Michael Schubert Date: Wed, 21 Dec 2011 13:05:27 +0100 Subject: [PATCH] builtin/log: remove redundant initialization "abbrev" and "commit_format" in struct rev_info get initialized in init_revisions - no need to reinit in cmd_log_init_defaults. Signed-off-by: Michael Schubert Signed-off-by: Junio C Hamano --- builtin/log.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/builtin/log.c b/builtin/log.c index f5d4930590..56bc555d11 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -72,8 +72,6 @@ static int decorate_callback(const struct option *opt, const char *arg, int unse static void cmd_log_init_defaults(struct rev_info *rev) { - rev->abbrev = DEFAULT_ABBREV; - rev->commit_format = CMIT_FMT_DEFAULT; if (fmt_pretty) get_commit_format(fmt_pretty, rev); rev->verbose_header = 1;