summaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-03-03 17:02:15 -0800
committerJosh Blum <josh@joshknows.com>2011-03-03 17:02:15 -0800
commit942c69b710510e6143a6f3c22bbe3ff0687f4bc6 (patch)
treefc5a786effc07735e22658249f6bee29b69e94f9 /host/lib
parentd2556f45c943e54d1b74afe94bff98cd81661bb2 (diff)
parent01ab237b0fcb22e5098bdda139ca76fe7e5d21cb (diff)
downloaduhd-942c69b710510e6143a6f3c22bbe3ff0687f4bc6.tar.gz
uhd-942c69b710510e6143a6f3c22bbe3ff0687f4bc6.tar.bz2
uhd-942c69b710510e6143a6f3c22bbe3ff0687f4bc6.zip
Merge branch 'master' into next
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/types/sensors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/types/sensors.cpp b/host/lib/types/sensors.cpp
index 401c229a3..52a63d14c 100644
--- a/host/lib/types/sensors.cpp
+++ b/host/lib/types/sensors.cpp
@@ -25,8 +25,8 @@ using namespace uhd;
sensor_value_t::sensor_value_t(
const std::string &name,
bool value,
- const std::string &ufalse,
- const std::string &utrue
+ const std::string &utrue,
+ const std::string &ufalse
):
name(name), value(value?"true":"false"),
unit(value?utrue:ufalse), type(BOOLEAN)