1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-18 23:14:51 +01:00

Merge branch 'fixes'

This commit is contained in:
Junio C Hamano 2005-10-23 01:57:42 -07:00
commit 02b54b3dfd

View file

@ -247,7 +247,7 @@ static int append_ref(const char *refname, const unsigned char *sha1)
struct commit *commit = lookup_commit_reference_gently(sha1, 1); struct commit *commit = lookup_commit_reference_gently(sha1, 1);
if (!commit) if (!commit)
return 0; return 0;
if (MAX_REVS < ref_name_cnt) { if (MAX_REVS <= ref_name_cnt) {
fprintf(stderr, "warning: ignoring %s; " fprintf(stderr, "warning: ignoring %s; "
"cannot handle more than %d refs", "cannot handle more than %d refs",
refname, MAX_REVS); refname, MAX_REVS);