Skip to content
Snippets Groups Projects
Commit 819a6084 authored by Erlend Sørhus's avatar Erlend Sørhus
Browse files

Casted output to csv to int.

parent 10ce9357
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,7 @@ int main(int argc, char** argv) {
runEnd_s = runStart_s + timePerSimFrame_s*runCounter;
i += runCounter;
if (runCounter>0) {
csv << runStart_s << "," << runEnd_s << endl;
csv << (int)runStart_s << "," << (int)runEnd_s << endl;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment