From d1767ccacadc505a7cdfc7b42f5d6a67afee741c Mon Sep 17 00:00:00 2001 From: mattijs Date: Mon, 6 Feb 2012 10:28:46 +0000 Subject: [PATCH] BUG: setSet: use c string --- applications/utilities/mesh/manipulation/setSet/setSet.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/utilities/mesh/manipulation/setSet/setSet.C b/applications/utilities/mesh/manipulation/setSet/setSet.C index 5619897041..0ea97db164 100644 --- a/applications/utilities/mesh/manipulation/setSet/setSet.C +++ b/applications/utilities/mesh/manipulation/setSet/setSet.C @@ -853,7 +853,7 @@ int main(int argc, char *argv[]) // Read history if interactive # ifdef HAS_READLINE - if (!batch && !read_history(runTime.path()/historyFile)) + if (!batch && !read_history((runTime.path()/historyFile).c_str())) { Info<< "Successfully read history from " << historyFile << endl; }