From 0a0099fb410e9175ade66d8678568a47719b5ab0 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 14 Oct 2014 12:49:50 +0200 Subject: [PATCH] rename variable, break long lines --- Tools/springclean.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Tools/springclean.cpp b/Tools/springclean.cpp index cee3f5549..41cde726d 100644 --- a/Tools/springclean.cpp +++ b/Tools/springclean.cpp @@ -83,11 +83,12 @@ int main() SimpleLogger().Write() << "ATTENTION! BE CAREFUL!"; SimpleLogger().Write() << "----------------------"; SimpleLogger().Write() << "This tool may put osrm-routed into an undefined state!"; - SimpleLogger().Write() << "By typing 'Y' you acknowledge that you know what your are doing."; - SimpleLogger().Write() << "\n\nDo you want to purge all shared memory allocated by osrm-datastore? [type 'Y' to confirm]"; + SimpleLogger().Write() << "Type 'Y' to acknowledge that you know what your are doing."; + SimpleLogger().Write() << "\n\nDo you want to purge all shared memory allocated " << + "by osrm-datastore? [type 'Y' to confirm]"; - const auto c = getchar(); - if (c != 'Y') + const auto letter = getchar(); + if (letter != 'Y') { SimpleLogger().Write() << "aborted."; return 0;