]> git.sur5r.net Git - openldap/commitdiff
Simplify: Replace IDL*_CMP() with CMP()
authorHallvard B Furuseth <h.b.furuseth@usit.uio.no>
Fri, 19 Aug 2011 15:27:06 +0000 (17:27 +0200)
committerHoward Chu <hyc@symas.com>
Thu, 1 Sep 2011 23:31:10 +0000 (16:31 -0700)
libraries/libmdb/midl.c

index 64eefe82c868d18ba7f0f5958a6a8af7fd4c4526..4b90a68049bfb4d6930e0f2dc8dac6ae2255996e 100644 (file)
 
 typedef unsigned long pgno_t;
 
-/* Sort the IDLs from highest to lowest */
-#define IDL_CMP(x,y)    ( (x) > (y) ? -1 : (x) < (y) )
-
-/* Sort the IDL2s from lowest to highest */
-#define IDL2_CMP(x,y)   ( (x) < (y) ? -1 : (x) > (y) )
+#define CMP(x,y)        ( (x) > (y) ? -1 : (x) < (y) )
 
 unsigned mdb_midl_search( ID *ids, ID id )
 {
@@ -42,7 +38,7 @@ unsigned mdb_midl_search( ID *ids, ID id )
        while( 0 < n ) {
                int pivot = n >> 1;
                cursor = base + pivot;
-               val = IDL_CMP( id, ids[cursor + 1] );
+               val = CMP( id, ids[cursor + 1] );
 
                if( val < 0 ) {
                        n = pivot;
@@ -127,7 +123,7 @@ unsigned mdb_midl2_search( MIDL2 *ids, MIDL2 *id )
        while( 0 < n ) {
                int pivot = n >> 1;
                cursor = base + pivot;
-               val = IDL2_CMP( id->mid, ids[cursor + 1].mid );
+               val = CMP( ids[cursor + 1].mid, id->mid );
 
                if( val < 0 ) {
                        n = pivot;