diff --git a/libsrc/hyperion/device/LedDeviceAdalight.cpp b/libsrc/hyperion/device/LedDeviceAdalight.cpp index bca44978..782b8c9d 100644 --- a/libsrc/hyperion/device/LedDeviceAdalight.cpp +++ b/libsrc/hyperion/device/LedDeviceAdalight.cpp @@ -18,7 +18,7 @@ LedDeviceAdalight::LedDeviceAdalight(const std::string& outputDevice, const unsi // empty } -int LedDeviceAdalight::write(const std::vector &ledValues) +int LedDeviceAdalight::write(const std::vector & ledValues) { if (_ledBuffer.size() == 0) { diff --git a/libsrc/hyperion/device/LedDeviceAdalight.h b/libsrc/hyperion/device/LedDeviceAdalight.h index f06b0230..f1085aee 100644 --- a/libsrc/hyperion/device/LedDeviceAdalight.h +++ b/libsrc/hyperion/device/LedDeviceAdalight.h @@ -26,7 +26,7 @@ public: /// @param ledValues The color-value per led /// @return Zero on succes else negative /// - virtual int write(const std::vector &ledValues); + virtual int write(const std::vector & ledValues); /// Switch the leds off virtual int switchOff();