]> git.sur5r.net Git - openldap/commitdiff
Silence warning for initializer "mdb_copy my = {0}"
authorHallvard Furuseth <hallvard@openldap.org>
Sat, 3 Sep 2016 07:41:30 +0000 (09:41 +0200)
committerHallvard Furuseth <hallvard@openldap.org>
Sat, 3 Sep 2016 07:41:30 +0000 (09:41 +0200)
1st struct member was not a scalar.

libraries/liblmdb/mdb.c

index 0110402c5b5bbbdcfb860efa783c759cb4480f52..b0518a55620a4b04aa4b18a1a3cc3c0eca86a824 100644 (file)
@@ -9628,12 +9628,12 @@ mdb_put(MDB_txn *txn, MDB_dbi dbi,
 
        /** State needed for a double-buffering compacting copy. */
 typedef struct mdb_copy {
+       MDB_env *mc_env;
+       MDB_txn *mc_txn;
        pthread_mutex_t mc_mutex;
        pthread_cond_t mc_cond; /**< Condition variable for #mc_new */
        char *mc_wbuf[2];
        char *mc_over[2];
-       MDB_env *mc_env;
-       MDB_txn *mc_txn;
        int mc_wlen[2];
        int mc_olen[2];
        pgno_t mc_next_pgno;