summaryrefslogtreecommitdiff
path: root/pngerror.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2014-08-21 05:53:38 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2014-08-21 05:57:43 -0500
commit259fb7761d747655c607efcec7a12ff1f3c24561 (patch)
treee927c9eaca9d93ecafc265ad3c0ea02471c4ab21 /pngerror.c
parent3ac41798c30c8558e84f7e007c49b4877d0c58f7 (diff)
[libpng16] Imported from libpng-1.6.13.tar
Diffstat (limited to 'pngerror.c')
-rw-r--r--pngerror.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pngerror.c b/pngerror.c
index ef84ffb78..a2f8a563d 100644
--- a/pngerror.c
+++ b/pngerror.c
@@ -1,7 +1,7 @@
/* pngerror.c - stub functions for i/o and memory allocation
*
- * Last changed in libpng 1.6.13 [(PENDING RELEASE)]
+ * Last changed in libpng 1.6.13 [August 21, 2014]
* Copyright (c) 1998-2014 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.)
@@ -415,13 +415,13 @@ png_app_error(png_const_structrp png_ptr, png_const_charp error_message)
}
#endif /* BENIGN_ERRORS */
-#define PNG_MAX_ERROR_TEXT 196 /* Currently limited be profile_error in png.c */
+#define PNG_MAX_ERROR_TEXT 196 /* Currently limited by profile_error in png.c */
#if defined(PNG_WARNINGS_SUPPORTED) || \
(defined(PNG_READ_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED))
/* These utilities are used internally to build an error message that relates
* to the current chunk. The chunk name comes from png_ptr->chunk_name,
- * this is used to prefix the message. The message is limited in length
- * to 63 bytes, the name characters are output as hex digits wrapped in []
+ * which is used to prefix the message. The message is limited in length
+ * to 63 bytes. The name characters are output as hex digits wrapped in []
* if the character is invalid.
*/
#define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))