aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/lmq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lmq.c b/src/core/lmq.c
index 9772e78e..bbf42356 100644
--- a/src/core/lmq.c
+++ b/src/core/lmq.c
@@ -1,5 +1,5 @@
//
-// Copyright 2019 Staysail Systems, Inc. <info@staysail.tech>
+// Copyright 2020 Staysail Systems, Inc. <info@staysail.tech>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
@@ -32,7 +32,7 @@ nni_lmq_init(nni_lmq *lmq, size_t cap)
}
lmq->lmq_cap = cap;
lmq->lmq_alloc = alloc;
- lmq->lmq_mask = (cap - 1);
+ lmq->lmq_mask = (alloc - 1);
lmq->lmq_len = 0;
lmq->lmq_get = 0;
lmq->lmq_put = 0;