Fri, 02 May 2014 21:42:11 +0300
- check for arg count before printing the header so the header doesn't appear when displaying usage
src/main.cpp | file | annotate | diff | comparison | revisions |
--- a/src/main.cpp Fri May 02 21:38:19 2014 +0300 +++ b/src/main.cpp Fri May 02 21:42:11 2014 +0300 @@ -59,6 +59,13 @@ exit (0); } + if (argc < 2) + { + fprintf (stderr, "usage: %s <infile> [outfile] # compiles botscript\n", argv[0]); + fprintf (stderr, " %s -l # lists commands\n", argv[0]); + exit (1); + } + // Print header String header; String headerline; @@ -89,13 +96,6 @@ headerline += '-'; print ("%2\n\n%1\n\n%2\n\n", header, headerline); - if (argc < 2) - { - fprintf (stderr, "usage: %s <infile> [outfile] # compiles botscript\n", argv[0]); - fprintf (stderr, " %s -l # lists commands\n", argv[0]); - exit (1); - } - String outfile; if (argc < 3)