From 79778e4696502884cdf2b12348ad7300b64fcf6e Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 23 Oct 2005 01:18:42 -0700 Subject: [PATCH] git-show-branch: Fix off-by-one error. Signed-off-by: Junio C Hamano --- show-branch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/show-branch.c b/show-branch.c index 8429c171cf..ed83645e16 100644 --- a/show-branch.c +++ b/show-branch.c @@ -247,7 +247,7 @@ static int append_ref(const char *refname, const unsigned char *sha1) struct commit *commit = lookup_commit_reference_gently(sha1, 1); if (!commit) return 0; - if (MAX_REVS < ref_name_cnt) { + if (MAX_REVS <= ref_name_cnt) { fprintf(stderr, "warning: ignoring %s; " "cannot handle more than %d refs", refname, MAX_REVS); -- 2.11.4.GIT