From: wolf Date: Wed, 25 May 2005 18:20:50 +0000 (+0000) Subject: Improve output. There is always one parameter (the name of the executable). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9f2c0fe3b02ad7a4d0637c24f66973a49a5dd7a;p=dealii-svn.git Improve output. There is always one parameter (the name of the executable). git-svn-id: https://svn.dealii.org/trunk@10748 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-19/step-19.cc b/deal.II/examples/step-19/step-19.cc index b0add28665..7196a1370b 100644 --- a/deal.II/examples/step-19/step-19.cc +++ b/deal.II/examples/step-19/step-19.cc @@ -128,15 +128,17 @@ int main (int argc, char ** argv) { try { - if (argc == 0) + if (argc == 1) { - std::cout << "Converter from deal.II intermediate format to " + std::cout << std::endl + << "Converter from deal.II intermediate format to " << "other graphics formats." << std::endl << std::endl << "Usage: ./step-19 [-p parameter_file] " << "list_of_input_files -x output_format " << "output_file" - << std::endl; + << std::endl + << std::endl; exit (1); }