mirror of
https://github.com/isar/libmdbx.git
synced 2024-12-30 03:24:13 +08:00
mdbx-tools: minor fix a condition for details output about leaf pages.
Thanks to Alexander Gavrilov (https://github.com/dartraiden) for the hint. Change-Id: I2a674b7d23310f8c776eef551353f79dfca7a3d8
This commit is contained in:
parent
d816e0605b
commit
c4b24b6a4d
@ -1497,8 +1497,8 @@ int main(int argc, char *argv[]) {
|
||||
if (all_leaf) {
|
||||
print(", leaf %" PRIu64, all_leaf);
|
||||
if (verbose > 2 &&
|
||||
(dbi->pages.leaf_dupfixed | dbi->pages.subleaf_dupsort |
|
||||
dbi->pages.subleaf_dupsort))
|
||||
(dbi->pages.subleaf_dupsort | dbi->pages.leaf_dupfixed |
|
||||
dbi->pages.subleaf_dupfixed))
|
||||
print(" (usual %" PRIu64 ", sub-dupsort %" PRIu64
|
||||
", dupfixed %" PRIu64 ", sub-dupfixed %" PRIu64 ")",
|
||||
dbi->pages.leaf, dbi->pages.subleaf_dupsort,
|
||||
|
Loading…
x
Reference in New Issue
Block a user