Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-show-branch: Fix off-by-one error.
author
Junio C Hamano
<junkio@cox.net>
Sun, 23 Oct 2005 08:18:42 +0000
(
01:18
-0700)
committer
Junio C Hamano
<junkio@cox.net>
Sun, 23 Oct 2005 08:19:48 +0000
(
01:19
-0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
show-branch.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(from parent 1:
a935c39
)
diff --git
a/show-branch.c
b/show-branch.c
index 8429c171cf6e6ddbac2f1a95da4a05f7ce8d34a3..ed83645e16bb3364780b93dc3d24722161929b3d 100644
(file)
--- 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);