diff options
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) |