mirror of
https://github.com/matrix-construct/construct
synced 2025-01-18 02:21:56 +01:00
modules/federation/federation: Improve format of backfill grid.
This commit is contained in:
parent
6036af66b8
commit
6a3f30afb6
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ feds__backfill(const m::room::id &room_id,
|
|||
out << i++ << " " << p.first << std::endl;
|
||||
|
||||
for(size_t j(0); j < i; ++j)
|
||||
out << "| " << j << " ";
|
||||
out << "| " << std::left << std::setw(2) << j;
|
||||
out << "|" << std::endl;
|
||||
|
||||
for(const auto &req : reqs)
|
||||
|
|
Loading…
Add table
Reference in a new issue