mirror of
https://github.com/webmproject/libwebp.git
synced 2025-01-15 17:18:23 +01:00
fix missing intptr_t->int cast for MSVC
Change-Id: I39acdfbe287ef7b7f615d59e0729aab161189bf9
This commit is contained in:
parent
1f803f645d
commit
23c0f354a6
@ -614,7 +614,7 @@ static void TraceBackwards(uint32_t* const dist_array,
|
|||||||
cur -= k;
|
cur -= k;
|
||||||
}
|
}
|
||||||
*chosen_path = path;
|
*chosen_path = path;
|
||||||
*chosen_path_size = dist_array + dist_array_size - path;
|
*chosen_path_size = (int)(dist_array + dist_array_size - path);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int BackwardReferencesHashChainFollowChosenPath(
|
static int BackwardReferencesHashChainFollowChosenPath(
|
||||||
|
Loading…
Reference in New Issue
Block a user