From c20593a05e33a9943411582d37154e7a87fd7059 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Mon, 28 Dec 2015 05:44:58 -0500 Subject: [PATCH] [whitespace] epoch: Fix comment. --- src/ck_epoch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ck_epoch.c b/src/ck_epoch.c index 2fff264..8f21b7c 100644 --- a/src/ck_epoch.c +++ b/src/ck_epoch.c @@ -393,8 +393,8 @@ ck_epoch_synchronize(struct ck_epoch_record *record) /* * Technically, we are vulnerable to an overflow in presence of - * multiple writers. Realistically, this will require 2^32 scans. You - * can use epoch-protected sections on the writer-side if this is a + * multiple writers. Realistically, this will require UINT_MAX scans. + * You can use epoch-protected sections on the writer-side if this is a * concern. */ delta = epoch = ck_pr_load_uint(&global->epoch);