summaryrefslogtreecommitdiff
path: root/test/test_choices.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_choices.c')
-rw-r--r--test/test_choices.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_choices.c b/test/test_choices.c
index 3ad7d6a..d86bc12 100644
--- a/test/test_choices.c
+++ b/test/test_choices.c
@@ -135,8 +135,8 @@ TEST test_choices_unicode() {
}
TEST test_choices_large_input() {
- int N = 100000;
- char *strings[N];
+ const int N = 100000;
+ char *strings[100000];
for(int i = 0; i < N; i++) {
asprintf(&strings[i], "%i", i);