From 3cd07dec42d0019ef7b875de24a963af119e647d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 26 Feb 2022 10:25:04 +0100 Subject: cleanup --- vorlesungsnotizen/bin/numberpages.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'vorlesungsnotizen/bin') diff --git a/vorlesungsnotizen/bin/numberpages.cpp b/vorlesungsnotizen/bin/numberpages.cpp index b990453..704a671 100644 --- a/vorlesungsnotizen/bin/numberpages.cpp +++ b/vorlesungsnotizen/bin/numberpages.cpp @@ -14,7 +14,8 @@ #include void usage(char *progname) { - std::cout << "usage: " << progname << " [ -f ] [ -s section ] " << std::endl; + std::cout << "usage: " << progname << " [ -f ] [ -s section ] "; + std::cout << " " << std::endl; } struct option longoptions[] = { @@ -29,7 +30,8 @@ int main(int argc, char *argv[]) { bool debug = false; std::string section; int c, longindex, rc; - while (EOF != (c = getopt_long(argc, argv, "dfhs:?", longoptions, &longindex))) { + while (EOF != (c = getopt_long(argc, argv, "dfhs:?", longoptions, + &longindex))) { switch (c) { case 'd': debug = true; -- cgit v1.2.1