summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-06-05 19:00:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-06-05 19:00:07 (GMT)
commit3c91e9966aae9ad73a27f7066551b2861d8c8849 (patch)
tree82710472d9b3cbb165ce0d19b9df3af078c92e56 /sha1_file.c
parent1d93ec93970d73e57c37dffd2108dbd01761cb2c (diff)
parent319b678a7b7c7fd03242b2b91d936f65e798cd06 (diff)
downloadgit-3c91e9966aae9ad73a27f7066551b2861d8c8849.zip
git-3c91e9966aae9ad73a27f7066551b2861d8c8849.tar.gz
git-3c91e9966aae9ad73a27f7066551b2861d8c8849.tar.bz2
Merge branch 'jk/sha1-file-reduce-useless-warnings' into maint
* jk/sha1-file-reduce-useless-warnings: sha1_file: squelch "packfile cannot be accessed" warnings
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 47f56f2..001537c 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -2473,10 +2473,8 @@ static int fill_pack_entry(const unsigned char *sha1,
* answer, as it may have been deleted since the index was
* loaded!
*/
- if (!is_pack_valid(p)) {
- warning("packfile %s cannot be accessed", p->pack_name);
+ if (!is_pack_valid(p))
return 0;
- }
e->offset = offset;
e->p = p;
hashcpy(e->sha1, sha1);