summary refs log tree commit diff
path: root/bin/pngo.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pngo.c')
-rw-r--r--bin/pngo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pngo.c b/bin/pngo.c
index 17ffbd62..b4563839 100644
--- a/bin/pngo.c
+++ b/bin/pngo.c
@@ -226,7 +226,7 @@ static uint8_t paethPredictor(uint8_t a, uint8_t b, uint8_t c) {
     int32_t pb = labs(p - (int32_t)b);
     int32_t pc = labs(p - (int32_t)c);
     if (pa <= pb && pa <= pc) return a;
-    if (pb < pc) return b;
+    if (pb <= pc) return b;
     return c;
 }