From 91d748b919a7de6d785b09095129a00e942b16dd Mon Sep 17 00:00:00 2001 From: Michael Sweet Date: Sun, 27 Aug 2017 10:58:06 -0400 Subject: [PATCH] Fix sorting bug. --- cups/ppd-cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cups/ppd-cache.c b/cups/ppd-cache.c index 1248bc095..925ab8055 100644 --- a/cups/ppd-cache.c +++ b/cups/ppd-cache.c @@ -4046,7 +4046,7 @@ _ppdCreateFromIPP(char *buffer, /* I - Filename buffer */ for (i = 0; i < (count - 1); i ++) { - for (j = i + 1; j < count; i ++) + for (j = i + 1; j < count; j ++) { int ix, iy, /* First X and Y resolution */ jx, jy, /* Second X and Y resolution */ -- 2.39.2