summaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorJason Abele <jason@ettus.com>2011-03-03 13:58:14 -0800
committerJason Abele <jason@ettus.com>2011-03-03 13:58:14 -0800
commit456b90793b73d4a1113908823e12d8a16211504a (patch)
tree31c3ce9b54ed9cb84d283788dbfeeaa9d2dff857 /host/lib
parent7aed95a658deb52404ba49774cfcecf96df654a8 (diff)
downloaduhd-456b90793b73d4a1113908823e12d8a16211504a.tar.gz
uhd-456b90793b73d4a1113908823e12d8a16211504a.tar.bz2
uhd-456b90793b73d4a1113908823e12d8a16211504a.zip
Fixes inverted logic in sensors bool interface
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 5f7115d70..dd8a170ea 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)