Changed a getMassFractions() call from 2 args to 1 arg. The old

method had been taken out of State.h. And, this file had not
been subsequently updated.
This commit is contained in:
Harry Moffat 2004-04-23 17:13:30 +00:00
parent 33128a29bf
commit 219caa1e98

View file

@ -111,7 +111,7 @@ extern "C" {
integer DLL_EXPORT phase_getmassfractions_(integer* n, doublereal* y) {
ThermoPhase* p = _fph(n);
p->getMassFractions(p->nSpecies(), y);
p->getMassFractions(y);
return 0;
}