Skip to content
Snippets Groups Projects
Commit 8613b5b5 authored by Saad Jbabdi's avatar Saad Jbabdi
Browse files

replace cout by cerr

parent a636ee49
No related branches found
No related tags found
No related merge requests found
...@@ -45,8 +45,8 @@ int main ( int argc, char **argv ){ ...@@ -45,8 +45,8 @@ int main ( int argc, char **argv ){
else if(opts.network.value()){ nmasks(); } else if(opts.network.value()){ nmasks(); }
else if(opts.meshfile.value()!=""){meshmask();} else if(opts.meshfile.value()!=""){meshmask();}
else { else {
cout << "No seed mask detected! exit without doing anything"<<endl; cerr << "No seed mask detected! exit without doing anything"<<endl;
cout << "If you are seeding from a list of coordinates, use --mode=simple"<<endl; cerr << "If you are seeding from a list of coordinates, use --mode=simple"<<endl;
return 0; return 0;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment