From ba6e9d8a1168199998f630a593de486d4d6d4f0e Mon Sep 17 00:00:00 2001 From: nyg Date: Tue, 5 Sep 2017 18:23:04 +0200 Subject: [PATCH] wrjpgcom: Fix comment typo Comment was copied/pasted from skip_variable() without making the necessary modifications. --- wrjpgcom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrjpgcom.c b/wrjpgcom.c index c97075756..531c15282 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--;