Skip to content

Commit

Permalink
Fix invalid escape sequence in database migration code
Browse files Browse the repository at this point in the history
  • Loading branch information
kahrl committed Nov 23, 2013
1 parent ee0b8da commit ab601e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Expand Up @@ -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();

Expand Down

0 comments on commit ab601e8

Please sign in to comment.