aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils/load_modules.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-03-17 14:18:01 -0700
committerJosh Blum <josh@joshknows.com>2011-03-17 14:18:01 -0700
commitdd1571aa2369573e8f4626b078fbd794e84904cd (patch)
treefb4f3afad80bdf2a04c3a3a1163ffc5d4dd73aa9 /host/lib/utils/load_modules.cpp
parent420491d4f9521c34696c6c2483c9a37fe90f4d2c (diff)
parent0d0d03d08d13037da2f2f1c85e546addff32aa69 (diff)
downloaduhd-dd1571aa2369573e8f4626b078fbd794e84904cd.tar.gz
uhd-dd1571aa2369573e8f4626b078fbd794e84904cd.tar.bz2
uhd-dd1571aa2369573e8f4626b078fbd794e84904cd.zip
Merge branch 'boost_fs_string' into next
Diffstat (limited to 'host/lib/utils/load_modules.cpp')
-rw-r--r--host/lib/utils/load_modules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/utils/load_modules.cpp b/host/lib/utils/load_modules.cpp
index ad39960bb..bee0d5304 100644
--- a/host/lib/utils/load_modules.cpp
+++ b/host/lib/utils/load_modules.cpp
@@ -72,7 +72,7 @@ static void load_module(const std::string &file_name){
*/
static void load_module_path(const fs::path &path){
if (not fs::exists(path)){
- //std::cerr << boost::format("Module path \"%s\" not found.") % path.file_string() << std::endl;
+ //std::cerr << boost::format("Module path \"%s\" not found.") % path.string() << std::endl;
return;
}
@@ -90,7 +90,7 @@ static void load_module_path(const fs::path &path){
//its not a directory, try to load it
try{
- load_module(path.file_string());
+ load_module(path.string());
}
catch(const std::exception &err){
std::cerr << boost::format("Error: %s") % err.what() << std::endl;