From a0886e693e25da0e0b0a1512f3f8bf30a0b31824 Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Sat, 24 Jan 2009 18:24:04 +0000 Subject: [PATCH] Fix two overly long lines in command line help. --- src/cppcheck.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/cppcheck.cpp b/src/cppcheck.cpp index 1239ca5f8..d742f3392 100644 --- a/src/cppcheck.cpp +++ b/src/cppcheck.cpp @@ -167,15 +167,16 @@ std::string CppCheck::parseFromArgs(int argc, const char* const argv[]) " but there are also more false positives\n" " -f, --force Force checking on files that have \"too many\" configurations\n" " -h, --help Print this help\n" - " -I Give include path. Give several -I parameters to give several\n" - " paths. First given path is checked first. If paths are\n" - " relative to source files, this is not needed.\n" + " -I Give include path. Give several -I parameters to give\n" + " several paths. First given path is checked first. If paths\n" + " are relative to source files, this is not needed.\n" " -q, --quiet Only print error messages\n" " -s, --style Check coding style\n" " -v, --verbose More detailed error reports\n" "\n" "Example usage:\n" - " # Recursively check the current folder. Print the progress on the screen and write errors in a file:\n" + " # Recursively check the current folder. Print the progress on the screen and\n" + " write errors in a file:\n" " cppcheck . 2> err.txt\n" " # Recursively check ../myproject/ and print only most fatal errors:\n" " cppcheck --quiet ../myproject/\n"