From 2ed33307b468b223445ea23c505c290fe22ee204 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sat, 16 Jun 2012 12:35:24 -0700 Subject: [PATCH] Cosmetic changes. --- src/UniqueNodeList.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/UniqueNodeList.cpp b/src/UniqueNodeList.cpp index 6e10d93ed2..6d8cb0a231 100644 --- a/src/UniqueNodeList.cpp +++ b/src/UniqueNodeList.cpp @@ -1427,14 +1427,14 @@ bool UniqueNodeList::nodeLoad() if (!boost::filesystem::exists(theConfig.UNL_DEFAULT)) { - std::cerr << str(boost::format("UNL_DEFAULT not found: '%s'") % theConfig.UNL_DEFAULT) << std::endl; + std::cerr << str(boost::format("UNL_DEFAULT not found: %s") % theConfig.UNL_DEFAULT) << std::endl; return false; } if (!boost::filesystem::is_regular_file(theConfig.UNL_DEFAULT)) { - std::cerr << str(boost::format("UNL_DEFAULT not regular file: '%s'") % theConfig.UNL_DEFAULT) << std::endl; + std::cerr << str(boost::format("UNL_DEFAULT not regular file: %s") % theConfig.UNL_DEFAULT) << std::endl; return false; } @@ -1443,7 +1443,7 @@ bool UniqueNodeList::nodeLoad() if (!ifsDefault) { - std::cerr << str(boost::format("Failed to open: '%s'") % theConfig.UNL_DEFAULT) << std::endl; + std::cerr << str(boost::format("Failed to open: %s") % theConfig.UNL_DEFAULT) << std::endl; return false; } @@ -1455,14 +1455,14 @@ bool UniqueNodeList::nodeLoad() if (ifsDefault.bad()) { - std::cerr << str(boost::format("Failed to read: '%s'") % theConfig.UNL_DEFAULT) << std::endl; + std::cerr << str(boost::format("Failed to read: %s") % theConfig.UNL_DEFAULT) << std::endl; return false; } nodeDefault(strValidators); - std::cerr << str(boost::format("Processing: '%s'") % theConfig.UNL_DEFAULT) << std::endl; + std::cerr << str(boost::format("Processing: %s") % theConfig.UNL_DEFAULT) << std::endl; return true; }