Fix: incorrect parenthesis in cds_hlist_for_each_entry_safe_2
[urcu.git] / urcu / hlist.h
index 462f4937363fa0c137ae8603531ec23399ec7d10..344481133eac2051f4d7ab85e6188f51887e7dd7 100644 (file)
@@ -104,7 +104,7 @@ void cds_hlist_del(struct cds_hlist_node *elem)
                        : cds_hlist_entry((head)->next, __typeof__(*entry), member)); \
                (entry != NULL) && (e = (entry->member.next == NULL ? NULL \
                                        : cds_hlist_entry(entry->member.next, \
-                                               __typeof__(*entry), member), 1)); \
+                                               __typeof__(*entry), member)), 1); \
                entry = e)
 
 #endif /* _KCOMPAT_HLIST_H */
This page took 0.022378 seconds and 4 git commands to generate.