Skip to content

Commit ab601e8

Browse files
committedNov 23, 2013
Fix invalid escape sequence in database migration code
1 parent ee0b8da commit ab601e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ int main(int argc, char *argv[])
12531253
++count;
12541254
if (count % 500 == 0)
12551255
actionstream << "Migrated " << count << " blocks "
1256-
<< (100.0 * count / blocks.size()) << "\% completed" << std::endl;
1256+
<< (100.0 * count / blocks.size()) << "% completed" << std::endl;
12571257
}
12581258
new_db->endSave();
12591259

0 commit comments

Comments
 (0)
Please sign in to comment.