summaryrefslogtreecommitdiffstats
path: root/host/lib/usrp
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/usrp
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/usrp')
-rw-r--r--host/lib/usrp/usrp_e100/usrp_e100_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp b/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp
index 1385688e0..a120c3303 100644
--- a/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp
+++ b/host/lib/usrp/usrp_e100/usrp_e100_impl.cpp
@@ -53,7 +53,7 @@ static device_addrs_t usrp_e100_find(const device_addr_t &hint){
if (fs::exists(hint["node"])){
device_addr_t new_addr;
new_addr["type"] = "usrp-e";
- new_addr["node"] = fs::system_complete(fs::path(hint["node"])).file_string();
+ new_addr["node"] = fs::system_complete(fs::path(hint["node"])).string();
try{
usrp_e100_iface::sptr iface = usrp_e100_iface::make(new_addr["node"]);
new_addr["name"] = iface->mb_eeprom["name"];