summaryrefslogtreecommitdiffstats
path: root/thirdparty/libpng/pngwio.c
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-07-28 10:56:24 +0200
committerRémi Verschelde <rverschelde@gmail.com>2018-07-28 10:57:14 +0200
commitf4e682d7171b0ccf89ffc2d1e9bab084209fdfd0 (patch)
tree4ab829b564c5fd4fcf5256d4ec77c4683ff96fe1 /thirdparty/libpng/pngwio.c
parent4e4702e3868af342b0e2964c7753fa4a3aa83af8 (diff)
downloadredot-engine-f4e682d7171b0ccf89ffc2d1e9bab084209fdfd0.tar.gz
libpng: Update to upstream version 1.6.35
Diffstat (limited to 'thirdparty/libpng/pngwio.c')
-rw-r--r--thirdparty/libpng/pngwio.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/thirdparty/libpng/pngwio.c b/thirdparty/libpng/pngwio.c
index 37c7c3a7f0..e5391687a2 100644
--- a/thirdparty/libpng/pngwio.c
+++ b/thirdparty/libpng/pngwio.c
@@ -1,8 +1,8 @@
/* pngwio.c - functions for data output
*
- * Last changed in libpng 1.6.24 [August 4, 2016]
- * Copyright (c) 1998-2002,2004,2006-2014,2016 Glenn Randers-Pehrson
+ * Last changed in libpng 1.6.35 [July 15, 2018]
+ * Copyright (c) 1998-2002,2004,2006-2014,2016,2018 Glenn Randers-Pehrson
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
*
@@ -30,7 +30,7 @@
*/
void /* PRIVATE */
-png_write_data(png_structrp png_ptr, png_const_bytep data, png_size_t length)
+png_write_data(png_structrp png_ptr, png_const_bytep data, size_t length)
{
/* NOTE: write_data_fn must not change the buffer! */
if (png_ptr->write_data_fn != NULL )
@@ -48,9 +48,9 @@ png_write_data(png_structrp png_ptr, png_const_bytep data, png_size_t length)
* than changing the library.
*/
void PNGCBAPI
-png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
+png_default_write_data(png_structp png_ptr, png_bytep data, size_t length)
{
- png_size_t check;
+ size_t check;
if (png_ptr == NULL)
return;