packfile: convert has_sha1_pack to object_id
Convert this function to take a pointer to struct object_id and rename it has_object_pack for consistency with has_object_file. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
c51c39418b
commit
14c3c80c81
@ -66,7 +66,7 @@ static int count_loose(const struct object_id *oid, const char *path, void *data
|
||||
else {
|
||||
loose_size += on_disk_bytes(st);
|
||||
loose++;
|
||||
if (verbose && has_sha1_pack(oid->hash))
|
||||
if (verbose && has_object_pack(oid))
|
||||
packed_loose++;
|
||||
}
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user