summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-06-28 16:42:32 -0400
committerDavid Robillard <d@drobilla.net>2022-06-28 18:52:23 -0400
commit5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c (patch)
tree4d110e87040a0db8c9624c394a3d8d2e3b3cba04 /test
parentacb8ea62ac287efcfb50f20cd419b70f6c5a15a9 (diff)
downloadzix-5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c.tar.gz
zix-5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c.tar.bz2
zix-5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c.zip
Fix build as C with MSVC
Diffstat (limited to 'test')
-rw-r--r--test/btree_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/btree_test.c b/test/btree_test.c
index fb6b769..150a29d 100644
--- a/test/btree_test.c
+++ b/test/btree_test.c
@@ -220,7 +220,7 @@ test_remove_cases(void)
static const uintptr_t s1 = 2u;
static const uintptr_t s2 = 255u;
- static const size_t n_insertions = s1 * s2 * 1000u;
+ const size_t n_insertions = s1 * s2 * 1000u;
ZixBTree* const t = zix_btree_new(NULL, int_cmp, NULL);