summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerouault <erouault>2016-11-11 21:28:24 +0000
committererouault <erouault>2016-11-11 21:28:24 +0000
commitb42d57d06916c6c0f35aed93983833904009c6c6 (patch)
tree12b5bfe8edad161e4a3f7b103f25a92390cb5092
parent2b2b304804ee0ff19af05704d4c82998b94ce41b (diff)
downloadlibtiff-b42d57d06916c6c0f35aed93983833904009c6c6.tar.gz
Fix typo in comment
-rw-r--r--tools/tiff2pdf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tiff2pdf.c b/tools/tiff2pdf.c
index a436b385..fe8a6ea7 100644
--- a/tools/tiff2pdf.c
+++ b/tools/tiff2pdf.c
@@ -1,4 +1,4 @@
-/* $Id: tiff2pdf.c,v 1.96 2016-11-11 21:22:50 erouault Exp $
+/* $Id: tiff2pdf.c,v 1.97 2016-11-11 21:28:24 erouault Exp $
*
* tiff2pdf - converts a TIFF image to a PDF document
*
@@ -3697,7 +3697,7 @@ t2p_sample_rgbaa_to_rgb(tdata_t data, uint32 samplecount)
uint32 i;
/* For the 3 first samples, there is overlapping between souce and
- destination, so huge memmove().
+ destination, so use memmove().
See http://bugzilla.maptools.org/show_bug.cgi?id=2577 */
for(i = 0; i < 3 && i < samplecount; i++)
memmove((uint8*)data + i * 3, (uint8*)data + i * 4, 3);