From 6fb9962424b5d5d6ee5ab104dde79e18a9b757b1 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Fri, 20 May 2016 00:22:01 +0300 Subject: [PATCH] fix CMasternodeConfig::read() --- src/masternodeconfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/masternodeconfig.cpp b/src/masternodeconfig.cpp index e1f342808f..bb7566ebd3 100644 --- a/src/masternodeconfig.cpp +++ b/src/masternodeconfig.cpp @@ -20,7 +20,7 @@ bool CMasternodeConfig::read(std::string& strErr) { boost::filesystem::path pathMasternodeConfigFile = GetMasternodeConfigFile(); boost::filesystem::ifstream streamConfig(pathMasternodeConfigFile); - LogPrintf("loading masternode file at %s\n", pathMasternodeConfigFile.c_str()); + LogPrintf("loading masternode file at %s\n", pathMasternodeConfigFile.string()); if (!streamConfig.good()) { FILE* configFile = fopen(pathMasternodeConfigFile.string().c_str(), "a");