Skip to content
forked from LMDB/lmdb

Commit e41cd7e

Browse files
committed
Revert useless tabulation
1 parent 5f298f3 commit e41cd7e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libraries/liblmdb/mdb.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -1385,12 +1385,12 @@ struct MDB_txn {
13851385
#define MDB_TXN_NOSYNC MDB_NOSYNC /**< don't sync this txn on commit */
13861386
#define MDB_TXN_RDONLY MDB_RDONLY /**< read-only transaction */
13871387
/* internal txn flags */
1388-
#define MDB_TXN_WRITEMAP MDB_WRITEMAP /**< copy of #MDB_env flag in writers */
1389-
#define MDB_TXN_FINISHED 0x01 /**< txn is finished or never began */
1390-
#define MDB_TXN_ERROR 0x02 /**< txn is unusable after an error */
1391-
#define MDB_TXN_DIRTY 0x04 /**< must write, even if dirty list is empty */
1392-
#define MDB_TXN_SPILLS 0x08 /**< txn or a parent has spilled pages */
1393-
#define MDB_TXN_HAS_CHILD 0x10 /**< txn has an #MDB_txn.%mt_child */
1388+
#define MDB_TXN_WRITEMAP MDB_WRITEMAP /**< copy of #MDB_env flag in writers */
1389+
#define MDB_TXN_FINISHED 0x01 /**< txn is finished or never began */
1390+
#define MDB_TXN_ERROR 0x02 /**< txn is unusable after an error */
1391+
#define MDB_TXN_DIRTY 0x04 /**< must write, even if dirty list is empty */
1392+
#define MDB_TXN_SPILLS 0x08 /**< txn or a parent has spilled pages */
1393+
#define MDB_TXN_HAS_CHILD 0x10 /**< txn has an #MDB_txn.%mt_child */
13941394
/** most operations on the txn are currently illegal */
13951395
#define MDB_TXN_BLOCKED (MDB_TXN_FINISHED|MDB_TXN_ERROR|MDB_TXN_HAS_CHILD)
13961396
/** @} */

0 commit comments

Comments
 (0)