From 5b74d9f9b0eeaecc34ad260ce7c74c7f33ff2a96 Mon Sep 17 00:00:00 2001 From: Andriy Gapon Date: Wed, 11 Jul 2018 20:27:36 +0300 Subject: [PATCH] [whitespace] ck_queue: small formatting cleanup. --- include/ck_queue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ck_queue.h b/include/ck_queue.h index 2d2a0a9..59f9c60 100644 --- a/include/ck_queue.h +++ b/include/ck_queue.h @@ -181,7 +181,7 @@ struct { \ } while (0) #define CK_SLIST_REMOVE_AFTER(elm, field) do { \ - ck_pr_store_ptr(&(elm)->field.csle_next, \ + ck_pr_store_ptr(&(elm)->field.csle_next, \ (elm)->field.csle_next->field.csle_next); \ } while (0) @@ -190,7 +190,7 @@ struct { \ CK_SLIST_REMOVE_HEAD((head), field); \ } else { \ struct type *curelm = (head)->cslh_first; \ - while (curelm->field.csle_next != (elm)) \ + while (curelm->field.csle_next != (elm)) \ curelm = curelm->field.csle_next; \ CK_SLIST_REMOVE_AFTER(curelm, field); \ } \