mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-14 19:04:21 -05:00
sprintf format: pid_t need not be an int.
This commit is contained in:
parent
661dd2c66d
commit
5adc46d1d2
1 changed files with 4 additions and 7 deletions
|
|
@ -8303,13 +8303,10 @@ int mdb_reader_list(MDB_env *env, MDB_msg_func *func, void *ctx)
|
|||
mr = env->me_txns->mti_readers;
|
||||
for (i=0; i<rdrs; i++) {
|
||||
if (mr[i].mr_pid) {
|
||||
size_t tid;
|
||||
tid = mr[i].mr_tid;
|
||||
if (mr[i].mr_txnid == (txnid_t)-1) {
|
||||
sprintf(buf, "%10d %"Z"x -\n", mr[i].mr_pid, tid);
|
||||
} else {
|
||||
sprintf(buf, "%10d %"Z"x %"Z"u\n", mr[i].mr_pid, tid, mr[i].mr_txnid);
|
||||
}
|
||||
txnid_t txnid = mr[i].mr_txnid;
|
||||
sprintf(buf, txnid == (txnid_t)-1 ?
|
||||
"%10d %"Z"x -\n" : "%10d %"Z"x %"Z"u\n",
|
||||
(int)mr[i].mr_pid, (size_t)mr[i].mr_tid, txnid);
|
||||
if (first) {
|
||||
first = 0;
|
||||
rc = func(" pid thread txnid\n", ctx);
|
||||
|
|
|
|||
Loading…
Reference in a new issue