From: Felipe Contreras Date: Tue, 7 May 2013 21:55:07 +0000 (-0500) Subject: sha1_name: remove unnecessary braces X-Git-Tag: v1.8.4-rc0~180^2~6 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b5f769a0d71bc3f13f916db849ef6b4768359c4e sha1_name: remove unnecessary braces Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/sha1_name.c b/sha1_name.c index 01e49a92dd..6530ddd6d8 100644 --- a/sha1_name.c +++ b/sha1_name.c @@ -465,12 +465,11 @@ static int get_sha1_basic(const char *str, int len, unsigned char *sha1) int ret; /* try the @{-N} syntax for n-th checkout */ ret = interpret_branch_name(str, &buf); - if (ret > 0) { + if (ret > 0) /* substitute this branch name and restart */ return get_sha1_1(buf.buf, buf.len, sha1, 0); - } else if (ret == 0) { + else if (ret == 0) return -1; - } /* allow "@{...}" to mean the current branch reflog */ refs_found = dwim_ref("HEAD", 4, sha1, &real_ref); } else if (reflog_len)