From 30a667c610ada815bcf10abb97615b89243d0202 Mon Sep 17 00:00:00 2001 From: redPanther Date: Wed, 14 Sep 2016 17:28:03 +0200 Subject: [PATCH] fix 241 --- libsrc/hyperion/Hyperion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/hyperion/Hyperion.cpp b/libsrc/hyperion/Hyperion.cpp index ced585b4..eaef542f 100644 --- a/libsrc/hyperion/Hyperion.cpp +++ b/libsrc/hyperion/Hyperion.cpp @@ -526,7 +526,7 @@ LinearColorSmoothing * Hyperion::createColorSmoothing(const Json::Value & smooth device->setEnable(smoothingConfig.get("enable", true).asBool()); InfoIf(!device->enabled(), log,"Smoothing disabled"); - assert(device == nullptr); + assert(device != nullptr); return device; }