summaryrefslogtreecommitdiff
path: root/pngpread.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2015-08-13 20:57:18 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2015-08-13 20:57:18 -0500
commit8b83ff37049cf836f46b465005bb064d76d1876b (patch)
tree180550a757d4af87a58612f314bf4ae444352bc2 /pngpread.c
parenta47285829767b4ed1df9dd26c1a6630718a3f534 (diff)
downloadlibpng-8b83ff37049cf836f46b465005bb064d76d1876b.tar.gz
[libpng16] Change "n bit" to "n-bit" in comments.
Diffstat (limited to 'pngpread.c')
-rw-r--r--pngpread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pngpread.c b/pngpread.c
index 2d4a86269..9f68f9902 100644
--- a/pngpread.c
+++ b/pngpread.c
@@ -563,7 +563,7 @@ png_push_read_IDAT(png_structrp png_ptr)
* are of different types and we don't know which variable has the fewest
* bits. Carefully select the smaller and cast it to the type of the
* larger - this cannot overflow. Do not cast in the following test - it
- * will break on either 16 or 64 bit platforms.
+ * will break on either 16-bit or 64-bit platforms.
*/
if (idat_size < save_size)
save_size = (png_size_t)idat_size;