Skip to content
Snippets Groups Projects
Commit 22a9352e authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Use -c not -s, that is used for a fixed size in master now

parent 216d486d
No related branches found
No related tags found
1 merge request!7Add a scale factor for messages
......@@ -447,7 +447,7 @@ int main(int argc, char *argv[]) {
/* Handle the command-line, we expect a mpiuse data file to read and various
* options. */
int opt;
while ((opt = getopt(argc, argv, "vfds:")) != -1) {
while ((opt = getopt(argc, argv, "vfdc:")) != -1) {
switch (opt) {
case 'd':
datacheck = 1;
......@@ -458,7 +458,7 @@ int main(int argc, char *argv[]) {
case 'v':
verbose = 1;
break;
case 's':
case 'c':
messagescale = atof(optarg);
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment