mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 18:11:43 +00:00
Avoid casting warning
This commit is contained in:
parent
0d8265c8af
commit
8ac7da796b
@ -218,7 +218,7 @@ int git_diff_merge(git_diff *onto, const git_diff *from)
|
||||
int git_diff_find_similar__hashsig_for_file(
|
||||
void **out, const git_diff_file *f, const char *path, void *p)
|
||||
{
|
||||
git_hashsig_option_t opt = (git_hashsig_option_t)p;
|
||||
git_hashsig_option_t opt = (git_hashsig_option_t)(long long)p;
|
||||
int error = 0;
|
||||
|
||||
GIT_UNUSED(f);
|
||||
@ -235,7 +235,7 @@ int git_diff_find_similar__hashsig_for_file(
|
||||
int git_diff_find_similar__hashsig_for_buf(
|
||||
void **out, const git_diff_file *f, const char *buf, size_t len, void *p)
|
||||
{
|
||||
git_hashsig_option_t opt = (git_hashsig_option_t)p;
|
||||
git_hashsig_option_t opt = (git_hashsig_option_t)(long long)p;
|
||||
int error = 0;
|
||||
|
||||
GIT_UNUSED(f);
|
||||
|
Loading…
Reference in New Issue
Block a user