From 745d885808b0fba584494c97fcbec2a810d6b3e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 17 Nov 2008 18:58:06 +0000 Subject: [PATCH] minor update to startup message --- cppcheck.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cppcheck.cpp b/cppcheck.cpp index 0875eee3e..27dd3df4a 100644 --- a/cppcheck.cpp +++ b/cppcheck.cpp @@ -115,13 +115,13 @@ void CppCheck::check(int argc, char* argv[]) " cppcheck [--all] [--style] [--errorsonly] [--recursive] [filename1] [filename2]\n" "\n" "Options:\n" - " --all Normally a message is only shown if cppcheck is sure\n" - " it has found a bug.\n" - " When this option is given, all messages are shown.\n" + " --all Normally a message is only shown if cppcheck is sure\n" + " it has found a bug.\n" + " When this option is given, all messages are shown.\n" "\n" - " --style Check coding style.\n" - " --errorsonly Only print something when there is an error\n" - " --recursive Recursively check all *.cpp, *.cc and *.c files\n"; + " --style Check coding style.\n" + " --errorsonly Only print something when there is an error\n" + " --recursive Recursively check all *.cpp, *.cc and *.c files\n"; return; }