Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lvandeve/lodepng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLode Vandevenne <lvandeve@users.noreply.github.com>2023-12-04 00:51:29 +0300
committerGitHub <noreply@github.com>2023-12-04 00:51:29 +0300
commitd398e0f10d152a5d17fa30463474dc9f56523f9c (patch)
tree56e347be8baededa8d40698bd791ab0b8379b9bc /lodepng.h
parentc18b949b71f45e78b1f9a28c5d458bce0da505d6 (diff)
parent87032dd9c379892e08bba71c647bdaca793aee3c (diff)
Merge pull request #142 from kajott/masterHEADmaster
fixed MSVC warnings
Diffstat (limited to 'lodepng.h')
-rw-r--r--lodepng.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lodepng.h b/lodepng.h
index 81d4985..3f3649d 100644
--- a/lodepng.h
+++ b/lodepng.h
@@ -1001,7 +1001,7 @@ and data separately. The type is a 4-letter string.
The out variable and outsize are updated to reflect the new reallocated buffer.
Returne error code (0 if it went ok)
*/
-unsigned lodepng_chunk_create(unsigned char** out, size_t* outsize, unsigned length,
+unsigned lodepng_chunk_create(unsigned char** out, size_t* outsize, size_t length,
const char* type, const unsigned char* data);