From: Tero Roponen Date: Thu, 10 Oct 2013 05:14:24 +0000 (+0300) Subject: bus: fix duplicate comparisons X-Git-Tag: v209~1943 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=dfcd88f6347886f93973f810ee77a90685dda777;p=elogind.git bus: fix duplicate comparisons Testing for y > x is the same as testing for x < y. --- diff --git a/src/libsystemd-bus/sd-event.c b/src/libsystemd-bus/sd-event.c index 069e4fb82..de96fde8e 100644 --- a/src/libsystemd-bus/sd-event.c +++ b/src/libsystemd-bus/sd-event.c @@ -144,7 +144,7 @@ static int pending_prioq_compare(const void *a, const void *b) { /* Stability for the rest */ if (x < y) return -1; - if (y > x) + if (x > y) return 1; return 0; @@ -179,7 +179,7 @@ static int prepare_prioq_compare(const void *a, const void *b) { /* Stability for the rest */ if (x < y) return -1; - if (y > x) + if (x > y) return 1; return 0; @@ -212,7 +212,7 @@ static int time_prioq_compare(const void *a, const void *b) { /* Stability for the rest */ if (x < y) return -1; - if (y > x) + if (x > y) return 1; return 0;