Packets/80211Bundle: Complete radiotap dump (incl. unit-test)
[senf.git] / senf / PPI / Events.cti
index 435fe3a..5c6bc97 100644 (file)
@@ -26,7 +26,7 @@
 #include "Events.ih"
 
 // Custom includes
-#include "../Utils/senfassert.hh"
+#include <senf/Utils/senfassert.hh>
 #include "detail/EventBinding.hh"
 
 #define prefix_ inline
@@ -59,7 +59,7 @@ template <class EventType, class Self>
 prefix_ senf::ppi::detail::EventBinding<EventType> &
 senf::ppi::EventImplementationHelper<EventType,Self>::binding()
 {
-    SENF_ASSERT( static_cast<Self*>(this)->binding_ &&
+    SENF_ASSERT( static_cast<Self*>(this)->binding_,
                  "senf::ppi::EventImplementationHelper::binding(): Missing registerEvent()" );
     return * static_cast<Self*>(this)->binding_;
 }
@@ -90,7 +90,7 @@ template <class Self>
 prefix_ senf::ppi::detail::EventBinding<void> &
 senf::ppi::EventImplementationHelper<void,Self>::binding()
 {
-    SENF_ASSERT( static_cast<Self*>(this)->binding_ &&
+    SENF_ASSERT( static_cast<Self*>(this)->binding_,
                  "senf::ppi::EventImplementationHelper::binding(): Missing registerEvent()" );
     return * static_cast<Self*>(this)->binding_;
 }