diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-22 18:42:17 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-22 18:42:20 +0200 |
| commit | 492999a33b389ac6ddfa0cb80c78409bd2d54e1c (patch) | |
| tree | b617b8a582ad6039e17e83efedd07047aa32d046 /thirdparty/libpng/pngerror.c | |
| parent | 8495acc510e54c0d148b9d97c3f78f22ce16fa15 (diff) | |
| download | redot-engine-492999a33b389ac6ddfa0cb80c78409bd2d54e1c.tar.gz | |
libpng: Update to upstream version 1.6.31rc01
Fixes various issues with 1.6.30, especially ARM build.
Supersedes change in #9722.
Diffstat (limited to 'thirdparty/libpng/pngerror.c')
| -rw-r--r-- | thirdparty/libpng/pngerror.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/thirdparty/libpng/pngerror.c b/thirdparty/libpng/pngerror.c index 00d76f7c05..37f26c6558 100644 --- a/thirdparty/libpng/pngerror.c +++ b/thirdparty/libpng/pngerror.c @@ -1,8 +1,8 @@ /* pngerror.c - stub functions for i/o and memory allocation * - * Last changed in libpng 1.6.26 [October 20, 2016] - * Copyright (c) 1998-2002,2004,2006-2016 Glenn Randers-Pehrson + * Last changed in libpng 1.6.31 [(PENDING RELEASE)] + * Copyright (c) 1998-2002,2004,2006-2017 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.) * @@ -163,7 +163,7 @@ png_format_number(png_const_charp start, png_charp end, int format, case PNG_NUMBER_FORMAT_02u: /* Expects at least 2 digits. */ mincount = 2; - /* FALL THROUGH */ + /* FALLTHROUGH */ case PNG_NUMBER_FORMAT_u: *--end = digits[number % 10]; @@ -173,7 +173,7 @@ png_format_number(png_const_charp start, png_charp end, int format, case PNG_NUMBER_FORMAT_02x: /* This format expects at least two digits */ mincount = 2; - /* FALL THROUGH */ + /* FALLTHROUGH */ case PNG_NUMBER_FORMAT_x: *--end = digits[number & 0xf]; |
