From 8b20998ecd0bf3211570ba30cf34cb621545651a Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Sat, 7 Mar 2015 01:03:54 -0500 Subject: [PATCH] whitespace/ck_swlock: Fix typo in comment. --- include/ck_swlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ck_swlock.h b/include/ck_swlock.h index d880aaf..ef660aa 100644 --- a/include/ck_swlock.h +++ b/include/ck_swlock.h @@ -118,7 +118,7 @@ ck_swlock_write_latch(ck_swlock_t *rw) /* Publish intent to acquire lock. */ ck_pr_or_32(&rw->value, CK_SWLOCK_WRITER_BIT); - /* Stall until readers have seen the seen writer and cleared. */ + /* Stall until readers have seen the writer and cleared. */ while (ck_pr_cas_32(&rw->value, CK_SWLOCK_WRITER_BIT, CK_SWLOCK_WRITER_MASK) == false) { do {