Skip to content

Commit 8e3fec7

Browse files
committed
Bugfix for a call to LoadUnsteady_Solution in CDiscAdjFluidIteration::Preprocess.
The arguments of iZone and iInst were swapped.
1 parent 328a1b7 commit 8e3fec7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SU2_CFD/src/iteration/CDiscAdjFluidIteration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ void CDiscAdjFluidIteration::Preprocess(COutput* output, CIntegration**** integr
116116

117117
/*--- Load solution timestep n ---*/
118118

119-
LoadUnsteady_Solution(geometry, solver, config, iInst, iZone, Direct_Iter);
119+
LoadUnsteady_Solution(geometry, solver, config, iZone, iInst, Direct_Iter);
120120

121121
if (config[iZone]->GetDeform_Mesh()) {
122122
solvers0[MESH_SOL]->LoadRestart(geometries, solver[iZone][iInst], config[iZone], Direct_Iter, true);

0 commit comments

Comments
 (0)