mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Fix mdb_audit() printf format
This commit is contained in:
parent
831e70565e
commit
b95a2dc333
1 changed files with 1 additions and 1 deletions
|
|
@ -1715,7 +1715,7 @@ static void mdb_audit(MDB_txn *txn)
|
|||
}
|
||||
}
|
||||
if (freecount + count + NUM_METAS != txn->mt_next_pgno) {
|
||||
fprintf(stderr, "audit: %lu freecount: %lu count: %lu total: %lu next_pgno: %lu\n",
|
||||
fprintf(stderr, "audit: %"Z"u freecount: %"Z"u count: %"Z"u total: %"Z"u next_pgno: %"Z"u\n",
|
||||
txn->mt_txnid, freecount, count+NUM_METAS,
|
||||
freecount+count+NUM_METAS, txn->mt_next_pgno);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue