Skip to content
Snippets Groups Projects
Commit 55c0c3c0 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Fix multiple reads from single input line

parent 884f6c11
No related branches found
No related tags found
No related merge requests found
......@@ -361,7 +361,10 @@ int main(int argc, char **argv) {
last_read_line++;
iog = new int[nsph];
for (int i = 0; i < nsph; i++) {
sscanf(file_lines[last_read_line].c_str(), " %d", (iog + i));
string read_format = "";
for (int j = 0; j < i; j++) read_format += " %*d";
read_format += " %d";
sscanf(file_lines[last_read_line].c_str(), read_format.c_str(), (iog + i));
}
nshl = new int[nsph];
ros = new double[nsph];
......
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