Skip to content

Commit

Permalink
[Janitor mode] Fix tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@19265 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Feb 23, 2014
1 parent d0ea8da commit 3da7db8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimulationRuntime/c/optimization/mainOptimizer/ipoptODE.c
Expand Up @@ -196,8 +196,8 @@ static int res2file(IPOPT_DATA_ *iData,SOLVER_INFO* solverInfo)
pFile = fopen("optimizeInput.csv", "wt");
fprintf(pFile, "%s", "time");
for(i=0; i< iData->nu; ++i){
sprintf(buffer, "Input%i", i+1);
fprintf(pFile, "%s", buffer);
sprintf(buffer, "Input%i", i+1);
fprintf(pFile, "%s", buffer);
}
fprintf(pFile, "%s", "\n");

Expand Down

0 comments on commit 3da7db8

Please sign in to comment.