From: nyg Date: Tue, 5 Sep 2017 16:23:04 +0000 (+0200) Subject: wrjpgcom: Fix comment typo X-Git-Tag: 1.5.3~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba6e9d8a1168199998f630a593de486d4d6d4f0e;p=libjpeg-turbo wrjpgcom: Fix comment typo Comment was copied/pasted from skip_variable() without making the necessary modifications. --- diff --git a/wrjpgcom.c b/wrjpgcom.c index c970757..531c152 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--;