aboutsummaryrefslogtreecommitdiffstats
path: root/tests/read_chunk_test.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-12 20:39:23 +0200
committerDavid Robillard <d@drobilla.net>2018-05-27 21:10:21 +0200
commitc4b5d8a5f6973952b510ebd321cbac8aa5fb5267 (patch)
treec4b80c9b612f3f6bb8eb2561da9cd26f826579cb /tests/read_chunk_test.c
parent582bfbe1cb0a6aa833f56c5bd8cf42abe5c5d13a (diff)
downloadserd-c4b5d8a5f6973952b510ebd321cbac8aa5fb5267.tar.gz
serd-c4b5d8a5f6973952b510ebd321cbac8aa5fb5267.tar.bz2
serd-c4b5d8a5f6973952b510ebd321cbac8aa5fb5267.zip
Use fixed size stack
Diffstat (limited to 'tests/read_chunk_test.c')
-rw-r--r--tests/read_chunk_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/read_chunk_test.c b/tests/read_chunk_test.c
index 1e41ca8a..82cb4277 100644
--- a/tests/read_chunk_test.c
+++ b/tests/read_chunk_test.c
@@ -61,7 +61,7 @@ main(int argc, char** argv)
{
SerdWorld* world = serd_world_new();
SerdSinkInterface sink = { 0, on_base, on_prefix, on_statement, on_end };
- SerdReader* reader = serd_reader_new(world, SERD_TURTLE, &sink);
+ SerdReader* reader = serd_reader_new(world, SERD_TURTLE, &sink, 4096);
if (!reader) {
FAIL("Failed to create reader\n");
}