mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-14 21:09:55 +02:00
silence some type size related warnings
size_t/ptrdiff_t -> uint32_t Change-Id: Ic4d889b9239752311b9ed906c83076829d850874
This commit is contained in:
@ -548,7 +548,7 @@ static WebPMuxError CreateVP8XChunk(WebPMux* const mux) {
|
||||
uint32_t width = 0;
|
||||
uint32_t height = 0;
|
||||
uint8_t data[VP8X_CHUNK_SIZE];
|
||||
const size_t data_size = VP8X_CHUNK_SIZE;
|
||||
const uint32_t data_size = VP8X_CHUNK_SIZE;
|
||||
const WebPMuxImage* images = NULL;
|
||||
|
||||
images = mux->images_; // First image.
|
||||
|
Reference in New Issue
Block a user