From: David Rientjes Date: Mon, 14 Aug 2006 20:18:11 +0000 (-0700) Subject: blame.c return cleanup X-Git-Tag: v1.4.3-rc1~254 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b4e275992f7ea56b7944abb2b9339c7f6f5c9423;p=git.git blame.c return cleanup Removes conditional from return Signed-off-by: David Rientjes Signed-off-by: Junio C Hamano --- diff --git a/blame.c b/blame.c index 7099b53c7..54a43d5c5 100644 --- a/blame.c +++ b/blame.c @@ -351,10 +351,7 @@ static int fill_util_info(struct commit *commit) assert(util); assert(util->pathname); - if (get_blob_sha1(commit->tree, util->pathname, util->sha1)) - return 1; - else - return 0; + return !!get_blob_sha1(commit->tree, util->pathname, util->sha1); } static void alloc_line_map(struct commit *commit)