diff options
Diffstat (limited to 'kern/turnstile.c')
-rw-r--r-- | kern/turnstile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/turnstile.c b/kern/turnstile.c index f5e94db5..7b27d841 100644 --- a/kern/turnstile.c +++ b/kern/turnstile.c @@ -112,7 +112,7 @@ struct turnstile_waiter { #define TURNSTILE_HTABLE_SIZE 128 #if !ISP2(TURNSTILE_HTABLE_SIZE) -#error hash table size must be a power of two +#error "hash table size must be a power of two" #endif /* !ISP2(TURNSTILE_HTABLE_SIZE) */ #define TURNSTILE_HTABLE_MASK (TURNSTILE_HTABLE_SIZE - 1) |