From: Rose <83477269+AtariDreams@users.noreply.github.com> Date: Fri, 18 Nov 2022 16:10:52 +0000 (-0500) Subject: Remove redundant Canceled check X-Git-Tag: v2.4.3~73^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F550%2Fhead;p=thirdparty%2Fcups.git Remove redundant Canceled check We check for it the line below, so let's remove it from the for-loop conditional --- diff --git a/filter/rastertolabel.c b/filter/rastertolabel.c index 73ac4d76eb..6b26c3f3b3 100644 --- a/filter/rastertolabel.c +++ b/filter/rastertolabel.c @@ -1221,7 +1221,7 @@ main(int argc, /* I - Number of command-line arguments */ * Loop for each line on the page... */ - for (y = 0; y < header.cupsHeight && !Canceled; y ++) + for (y = 0; y < header.cupsHeight; y ++) { /* * Let the user know how far we have progressed...