From 5a13fddf7010d976a30c49b3f452fc04fbfd7986 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Thu, 11 Apr 2013 23:57:26 -0400 Subject: [PATCH] ck_hp_fifo: Style fixes. --- include/ck_hp_fifo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ck_hp_fifo.h b/include/ck_hp_fifo.h index 12fa790..41064f3 100644 --- a/include/ck_hp_fifo.h +++ b/include/ck_hp_fifo.h @@ -152,7 +152,7 @@ ck_hp_fifo_dequeue_mpmc(ck_hp_record_t *record, if (head == tail) { if (next == NULL) - return (NULL); + return NULL; ck_pr_cas_ptr(&fifo->tail, tail, next); continue; @@ -161,7 +161,7 @@ ck_hp_fifo_dequeue_mpmc(ck_hp_record_t *record, } ck_pr_store_ptr(value, next->value); - return (head); + return head; } CK_CC_INLINE static struct ck_hp_fifo_entry *