From bdc02b50b5f18afc04f21b6c47c9628f6c80f644 Mon Sep 17 00:00:00 2001 From: Andy Nonaka Date: Fri, 6 Dec 2024 10:13:01 -0800 Subject: [PATCH] Remove whitespace in plt_p query that was preventing it from working (#142) Remove whitespace in plt_p query that was preventing it from working --- src/setup/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup/init.cpp b/src/setup/init.cpp index 8af4518e..bc9da8da 100644 --- a/src/setup/init.cpp +++ b/src/setup/init.cpp @@ -309,7 +309,7 @@ void incflo::ReadIOParameters() Warning("amr.plt_* is depreciated. Please use amr.plotVariables"); update_plotVars("tracer",plt_var); } - if ( pp.query("plt_p ", plt_var ) ) { + if ( pp.query("plt_p", plt_var ) ) { Warning("amr.plt_* is depreciated. Please use amr.plotVariables"); update_plotVars("p",plt_var); }