Skip to content
Snippets Groups Projects
Commit dcabb6e1 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Change variable name to prevent shadowing.

parent aa224f58
No related branches found
No related tags found
No related merge requests found
......@@ -158,8 +158,8 @@ static void modelRun(MPI_Comm commModel)
zaxisDestroy ( zaxisID[i] );
gridDestroy ( gridID );
#ifdef USE_MPI
for (int varID = 0; varID < nVars; ++varID)
xt_idxlist_delete(varDeco[varID].partDesc);
for (int varIdx = 0; varIdx < nVars; ++varIdx)
xt_idxlist_delete(varDeco[varIdx].partDesc);
MPI_Barrier(commModel);
#endif
}
......
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