mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-20 22:08:41 +00:00
odb: cast to long long for printf
This commit is contained in:
parent
6065505667
commit
e5f9df7b0f
@ -53,7 +53,7 @@ static int load_alternates(git_odb *odb, const char *objects_dir, int alternate_
|
||||
int git_odb__format_object_header(char *hdr, size_t n, git_off_t obj_len, git_otype obj_type)
|
||||
{
|
||||
const char *type_str = git_object_type2string(obj_type);
|
||||
int len = p_snprintf(hdr, n, "%s %lld", type_str, obj_len);
|
||||
int len = p_snprintf(hdr, n, "%s %lld", type_str, (long long)obj_len);
|
||||
assert(len > 0 && len <= (int)n);
|
||||
return len+1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user