diff options
author | Josh Blum <josh@joshknows.com> | 2011-03-03 17:02:15 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-03-03 17:02:15 -0800 |
commit | 942c69b710510e6143a6f3c22bbe3ff0687f4bc6 (patch) | |
tree | fc5a786effc07735e22658249f6bee29b69e94f9 /host/lib | |
parent | d2556f45c943e54d1b74afe94bff98cd81661bb2 (diff) | |
parent | 01ab237b0fcb22e5098bdda139ca76fe7e5d21cb (diff) | |
download | uhd-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.cpp | 4 |
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) |