diff options
author | Richard Braun <rbraun@sceen.net> | 2017-04-29 22:51:58 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-04-29 22:53:00 +0200 |
commit | fb13a50dca9a526c6a1666fefe123b58524040ff (patch) | |
tree | 5734dbe449fab880fd3cf9bc154645cf2df53049 /kern/sleepq.c | |
parent | a9fedfa33cdcb3a3ea7feae06220609f8f3db0e6 (diff) |
Revert "Remove unneeded quotes when using #error"
This reverts commit b1aa94d0c7dba4138f651e6b081c1a0055ea8d54.
New occurrences of #error are also affected by this commit.
Diffstat (limited to 'kern/sleepq.c')
-rw-r--r-- | kern/sleepq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/sleepq.c b/kern/sleepq.c index c4946532..09548db6 100644 --- a/kern/sleepq.c +++ b/kern/sleepq.c @@ -54,7 +54,7 @@ struct sleepq_waiter { #define SLEEPQ_COND_HTABLE_SIZE 64 #if !ISP2(SLEEPQ_HTABLE_SIZE) || !ISP2(SLEEPQ_COND_HTABLE_SIZE) -#error hash table size must be a power of two +#error "hash table size must be a power of two" #endif /* !ISP2(SLEEPQ_HTABLE_SIZE) */ #define SLEEPQ_HTABLE_MASK (SLEEPQ_HTABLE_SIZE - 1) |