summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2019-09-24 00:33:03 +0000
committerKai Engert <kaie@kuix.de>2019-09-24 00:33:03 +0000
commit4771dcb79652d9d2781f01a495ad30c1b2e9170a (patch)
tree39c41d0c4cdfb9c23f587abb529762e4e1cfcd66
parent0b459aa3d16773bf7bbc893af0baca9464d1bf75 (diff)
downloadnspr-hg-4771dcb79652d9d2781f01a495ad30c1b2e9170a.tar.gz
Bug 1581890 - move comment into definition. r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D46200
-rw-r--r--lib/ds/plarena.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ds/plarena.c b/lib/ds/plarena.c
index e1edb134..1d54e2ca 100644
--- a/lib/ds/plarena.c
+++ b/lib/ds/plarena.c
@@ -37,7 +37,8 @@ PR_IMPLEMENT(void) PL_InitArenaPool(
static const PRUint8 pmasks[33] = {
0, /* not used */
0, 1, 3, 3, 7, 7, 7, 7,15,15,15,15,15,15,15,15, /* 1 ... 16 */
- 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31}; /* 17 ... 32 */
+ 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31 /* 17 ... 32 */
+ };
if (align == 0)
align = PL_ARENA_DEFAULT_ALIGN;