Change object format in prints to %lx:%lx v%lu

This commit is contained in:
Vitaliy Filippov
2020-09-05 17:44:05 +03:00
parent 68c3e96e46
commit 242d9a42a2
9 changed files with 34 additions and 34 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ void blockstore_impl_t::mark_stable(const obj_ver_id & v)
}
}
#ifdef BLOCKSTORE_DEBUG
printf("enqueue_flush %lu:%lu v%lu\n", v.oid.inode, v.oid.stripe, v.version);
printf("enqueue_flush %lx:%lx v%lu\n", v.oid.inode, v.oid.stripe, v.version);
#endif
flusher->enqueue_flush(v);
}