mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix invalid escape sequence in database migration code
This commit is contained in:
parent
ee0b8da844
commit
ab601e8710
1 changed files with 1 additions and 1 deletions
|
@ -1253,7 +1253,7 @@ int main(int argc, char *argv[])
|
||||||
++count;
|
++count;
|
||||||
if (count % 500 == 0)
|
if (count % 500 == 0)
|
||||||
actionstream << "Migrated " << count << " blocks "
|
actionstream << "Migrated " << count << " blocks "
|
||||||
<< (100.0 * count / blocks.size()) << "\% completed" << std::endl;
|
<< (100.0 * count / blocks.size()) << "% completed" << std::endl;
|
||||||
}
|
}
|
||||||
new_db->endSave();
|
new_db->endSave();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue