From 29d533773c2fa37932a40bb5a64a7f6399dcc3a3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 16 Sep 2014 06:18:51 +0200 Subject: [PATCH] rpng.c - cleanup --- gfx/rpng/rpng.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gfx/rpng/rpng.c b/gfx/rpng/rpng.c index fced321455..78c492ee48 100644 --- a/gfx/rpng/rpng.c +++ b/gfx/rpng/rpng.c @@ -247,8 +247,7 @@ static inline int paeth(int a, int b, int c) return a; else if (pb <= pc) return b; - else - return c; + return c; } static inline void copy_line_rgb(uint32_t *data,