From: Mathieu Desnoyers Date: Tue, 29 Apr 2014 20:01:57 +0000 (+0200) Subject: Fix: incorrect parenthesis in cds_hlist_for_each_entry_safe_2 X-Git-Tag: v0.9.0~91 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=79efd9b350e07a499b3620ddde4860b8378fcf00;hp=79efd9b350e07a499b3620ddde4860b8378fcf00 Fix: incorrect parenthesis in cds_hlist_for_each_entry_safe_2 commit db903109f0031c831e8fdc95cb7197996e53f46d introduced a regression in cds_hlist_for_each_entry_safe_2(): incorrect parenthesis assign "e" to 1, rather than assign "e" to the next pointer, and evaluating the expression to 1 (comma expression). Reported-by: Daniel Thibault Signed-off-by: Mathieu Desnoyers ---