]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Remove redundant Canceled check 550/head
authorRose <83477269+AtariDreams@users.noreply.github.com>
Fri, 18 Nov 2022 16:10:52 +0000 (11:10 -0500)
committerRose <83477269+AtariDreams@users.noreply.github.com>
Sat, 3 Dec 2022 16:28:29 +0000 (11:28 -0500)
We check for it the line below, so let's remove it from the for-loop conditional

filter/rastertolabel.c

index 73ac4d76eb9c8ebaedb0e8dc78280ed9274f8785..6b26c3f3b331c92964f6fe565cd2e16393bef411 100644 (file)
@@ -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...