Fix invalid escape sequence in database migration code

This commit is contained in:
Kahrl 2013-11-23 16:09:38 +01:00
parent ee0b8da844
commit ab601e8710
1 changed files with 1 additions and 1 deletions

View File

@ -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();