Index: libcfa/src/concurrency/channel.hfa
===================================================================
--- libcfa/src/concurrency/channel.hfa	(revision 3eeeb882cd93a559b38bb056d7f65d5cef6675fc)
+++ libcfa/src/concurrency/channel.hfa	(revision ded6c2a6bdba49106fabf9dcce740d46ecec4b7f)
@@ -51,6 +51,6 @@
 vtable(channel_closed) channel_closed_vt;
 
-static inline bool is_insert( channel_closed & e ) { return elem != 0p; }
-static inline bool is_remove( channel_closed & e ) { return elem == 0p; }
+static inline bool is_insert( channel_closed & e ) { return e.elem != 0p; }
+static inline bool is_remove( channel_closed & e ) { return e.elem == 0p; }
 
 // #define CHAN_STATS // define this to get channel stats printed in dtor
