diff --git a/Cantera/src/ImplicitChem.cpp b/Cantera/src/ImplicitChem.cpp index c31921da0..ea2760aa0 100755 --- a/Cantera/src/ImplicitChem.cpp +++ b/Cantera/src/ImplicitChem.cpp @@ -40,7 +40,7 @@ namespace Cantera { // get the initial conditions. void ImplicitChem::getInitialConditions(double t0, size_t leny, double* y) { - m_thermo->getMassFractions(leny, y); + m_thermo->getMassFractions(y); m_h0 = m_thermo->enthalpy_mass(); m_rho = m_thermo->density(); m_press = m_thermo->pressure();