From 548426485411d54c5a198d740098c4a2775fcf6f Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Fri, 19 Jun 2020 05:21:05 +0200 Subject: [PATCH] Add actionState argument also for non MPI branch --- opm/simulators/utils/ParallelRestart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/simulators/utils/ParallelRestart.cpp b/opm/simulators/utils/ParallelRestart.cpp index 8ac89e8da..fb4745a61 100644 --- a/opm/simulators/utils/ParallelRestart.cpp +++ b/opm/simulators/utils/ParallelRestart.cpp @@ -851,7 +851,7 @@ RestartValue loadParallelRestart(const EclipseIO* eclIO, Action::State& actionSt return restartValues; #else (void) comm; - return eclIO->loadRestart(summaryState, solutionKeys, extraKeys); + return eclIO->loadRestart(actionState, summaryState, solutionKeys, extraKeys); #endif }