From 172e9ffeadd8653ec309321dda61e68e0c508008 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 14 May 2018 22:01:55 -0400 Subject: [PATCH] [Samples] Remove verbose output from demo F77 wrapper --- samples/f77/demo_ftnlib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/f77/demo_ftnlib.cpp b/samples/f77/demo_ftnlib.cpp index aa98bfa8b0..a9c8cceddb 100644 --- a/samples/f77/demo_ftnlib.cpp +++ b/samples/f77/demo_ftnlib.cpp @@ -88,9 +88,9 @@ extern "C" { } try { delete _trans; - _trans = newTransportMgr(trmodel,_gas,1); + _trans = newTransportMgr(trmodel,_gas,0); } catch (CanteraError& err) { - _trans = newTransportMgr("",_gas,1); + _trans = newTransportMgr("",_gas,0); } }