From 026ae7d046e58d6036a4b8df8f2012fb61200ff4 Mon Sep 17 00:00:00 2001 From: Dave Goodwin Date: Mon, 21 Apr 2003 11:37:49 +0000 Subject: [PATCH] *** empty log message *** --- tools/templates/f77/demo_ftnlib.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/templates/f77/demo_ftnlib.cpp b/tools/templates/f77/demo_ftnlib.cpp index 63fab3567..4f11ea943 100644 --- a/tools/templates/f77/demo_ftnlib.cpp +++ b/tools/templates/f77/demo_ftnlib.cpp @@ -52,7 +52,6 @@ extern "C" { string fth = string(thermo, lenthermo); if (_gas) delete _gas; _gas = new IdealGasMix(fin, fth); - _init(); } /// integer function nElements() @@ -155,7 +154,7 @@ extern "C" { "two-character string required."); } string optstr = string(opt, 2); - equilibrate(*_gas, optstr.c_str();); + equilibrate(*_gas, optstr.c_str()); }