]> granicus.if.org Git - apache/commitdiff
work w/ apr_skiplist_insert()
authorJim Jagielski <jim@apache.org>
Fri, 13 Mar 2015 15:27:36 +0000 (15:27 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 13 Mar 2015 15:27:36 +0000 (15:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1666482 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/motorz/motorz.c

index 30c5473f5782811ddc9e2bc073f46ee662debcf7..81a830bfbf75c54b36a2354ab0a4732c54865643 100644 (file)
@@ -70,7 +70,7 @@ static int indexing_comp(void *a, void *b)
     apr_time_t t2 = (apr_time_t) (((motorz_timer_t *) b)->expires);
     AP_DEBUG_ASSERT(t1);
     AP_DEBUG_ASSERT(t2);
-    return ((t1 < t2) ? -1 : ((t1 > t2) ? 1 : 0));
+    return ((t1 < t2) ? -1 : 1);
 }
 
 static int indexing_compk(void *ac, void *b)
@@ -78,7 +78,7 @@ static int indexing_compk(void *ac, void *b)
     apr_time_t *t1 = (apr_time_t *) ac;
     apr_time_t t2 = (apr_time_t) (((motorz_timer_t *) b)->expires);
     AP_DEBUG_ASSERT(t2);
-    return ((*t1 < t2) ? -1 : ((*t1 > t2) ? 1 : 0));
+    return ((*t1 < t2) ? -1 : 1);
 }
 
 static apr_status_t motorz_conn_pool_cleanup(void *baton)