aboutsummaryrefslogtreecommitdiff
path: root/wrjpgcom.c
diff options
context:
space:
mode:
authornyg <nyg@users.noreply.github.com>2017-09-05 18:23:04 +0200
committerDRC <information@libjpeg-turbo.org>2017-09-05 11:23:56 -0500
commitba6e9d8a1168199998f630a593de486d4d6d4f0e (patch)
tree02a8b0914174f7c74a0be738c104a4f73f23dcfb /wrjpgcom.c
parent5426a4cb166ccea3ec0eef6fbef55ee83e442c19 (diff)
downloadlibjpeg-turbo-ba6e9d8a1168199998f630a593de486d4d6d4f0e.tar.gz
wrjpgcom: Fix comment typo
Comment was copied/pasted from skip_variable() without making the necessary modifications.
Diffstat (limited to 'wrjpgcom.c')
-rw-r--r--wrjpgcom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrjpgcom.c b/wrjpgcom.c
index c9707575..531c1528 100644
--- a/wrjpgcom.c
+++ b/wrjpgcom.c
@@ -247,7 +247,7 @@ copy_variable (void)
if (length < 2)
ERREXIT("Erroneous JPEG marker length");
length -= 2;
- /* Skip over the remaining bytes */
+ /* Copy the remaining bytes */
while (length > 0) {
write_1_byte(read_1_byte());
length--;