diff --git a/include/utilities/print_progress.h b/include/utilities/print_progress.h index ecf66ea1..5257d098 100644 --- a/include/utilities/print_progress.h +++ b/include/utilities/print_progress.h @@ -47,6 +47,6 @@ print_progress(T1 wantProgress, T2 currentProgress) { std::cout << "\r" << bar << " (" << static_cast(100 * percent) << "%)" - << " Total porcessed: " << currentProgress << std::flush; + << " Total processed: " << currentProgress << std::flush; } #endif // SRC_PRINT_PROGRESS_H_ diff --git a/src/utilities/prog_options.cpp b/src/utilities/prog_options.cpp index 79446f78..6f5aec85 100644 --- a/src/utilities/prog_options.cpp +++ b/src/utilities/prog_options.cpp @@ -104,9 +104,9 @@ process_command_line(po::variables_map &vm) { std::cout << (vm.count("clean")? "D" : "Don't d") << "rop tables\n"; std::cout << (vm.count("no-index")? "D" : "Don't c") << "reate indexes\n"; std::cout << (vm.count("addnodes")? "A" : "Don't a") << "dd OSM nodes\n"; +#if 0 std::cout << (vm.count("addways")? "A" : "Don't a") << "dd OSM ways\n"; std::cout << (vm.count("addrelations")? "A" : "Don't a") << "dd OSM relations\n"; -#if 0 std::cout << (vm.count("fork")? "F" : "Don't f") << "ork\n"; #endif std::cout << "***************************************************\n";