Skip to content
Snippets Groups Projects
Commit ab601e87 authored by Kahrl's avatar Kahrl
Browse files

Fix invalid escape sequence in database migration code

parent ee0b8da8
Branches
Tags
No related merge requests found
......@@ -1253,7 +1253,7 @@ int main(int argc, char *argv[])
++count;
if (count % 500 == 0)
actionstream << "Migrated " << count << " blocks "
<< (100.0 * count / blocks.size()) << "\% completed" << std::endl;
<< (100.0 * count / blocks.size()) << "% completed" << std::endl;
}
new_db->endSave();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment