From 3610dd9f9bf1d05f457e03af34d61030121a5a75 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 23 Aug 2017 15:34:22 -0600 Subject: [PATCH] ircd::ctx: Minor fix. --- include/ircd/ctx/ctx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ircd/ctx/ctx.h b/include/ircd/ctx/ctx.h index 103c7fcdb..3bd012a7e 100644 --- a/include/ircd/ctx/ctx.h +++ b/include/ircd/ctx/ctx.h @@ -37,7 +37,7 @@ struct ctx; IRCD_OVERLOAD(threadsafe) -const uint64_t &id(const ctx &); // Unique ID for context +const uint64_t &id(const ctx &); // Unique ID for context string_view name(const ctx &); // User's optional label for context const int64_t ¬es(const ctx &); // Peeks at internal semaphore count (you don't need this) bool finished(const ctx &); // Context function returned (or exception).