summaryrefslogtreecommitdiff
path: root/apps/pdfclean.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/pdfclean.c')
-rw-r--r--apps/pdfclean.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/pdfclean.c b/apps/pdfclean.c
index f4cd5d5b..ab2ee4c8 100644
--- a/apps/pdfclean.c
+++ b/apps/pdfclean.c
@@ -228,7 +228,7 @@ static void removeduplicateobjs(void)
if (fz_objcmp(a, b))
continue;
- newnumlist[num] = num < other ? num : other;
+ newnumlist[num] = MIN(num, other);
break;
}
}