From ffc6b4c48b4472c3a8677b6c8c5ade8c2bc3c231 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Wed, 30 Jun 2004 22:30:53 +0000 Subject: [PATCH] Fixed an error with a calling statement. --- Cantera/src/ImplicitChem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();