Skip to content
Snippets Groups Projects
Commit 29312fc3 authored by Taylor Hanayik's avatar Taylor Hanayik Committed by Matthew Webster
Browse files

remove newline printing from -r option

parent 43295ca6
No related branches found
No related tags found
No related merge requests found
......@@ -354,7 +354,7 @@ int fmrib_main_float(int argc, char* argv[],const bool timeseriesMode, const str
}
} else if (sarg=="-r") {
vector<float> limits(vol.robustlimits(mask));
cout << limits[0] << " " << limits[1] << endl;
cout << limits[0] << " " << limits[1] << " ";
} else if (sarg=="-R") {
cout << vol.min(mask) << " " << vol.max(mask) << " ";
} else if (sarg=="-c") {
......
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