projects
/
zefram
/
minetest
/
minetest_engine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee0b8da
)
Fix invalid escape sequence in database migration code
author
Kahrl
<kahrl@gmx.net>
Sat, 23 Nov 2013 15:09:38 +0000
(16:09 +0100)
committer
Kahrl
<kahrl@gmx.net>
Sat, 23 Nov 2013 15:09:38 +0000
(16:09 +0100)
src/main.cpp
patch
|
blob
|
history
diff --git
a/src/main.cpp
b/src/main.cpp
index ea66f13345a276642d8891dc7f56d121bcf7cfe4..9ffab816efd2b1411dbc33e88b9624e0dddd4dea 100644
(file)
--- a/
src/main.cpp
+++ b/
src/main.cpp
@@
-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();