aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_overflow.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-07-09 21:39:31 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:07 -0500
commit31ef2936a1549cdc125c387a8f541d8b70e60c21 (patch)
tree7c48e3273053c885ccbfa92b7762a7179828080e /test/test_overflow.c
parent3389cf3e506ad9e8475daf8b1cac0248274849bc (diff)
downloadserd-31ef2936a1549cdc125c387a8f541d8b70e60c21.tar.gz
serd-31ef2936a1549cdc125c387a8f541d8b70e60c21.tar.bz2
serd-31ef2936a1549cdc125c387a8f541d8b70e60c21.zip
Replace serd_reader_set_strict() with SerdReaderFlags
Diffstat (limited to 'test/test_overflow.c')
-rw-r--r--test/test_overflow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_overflow.c b/test/test_overflow.c
index ac47d239..6c67d7cc 100644
--- a/test/test_overflow.c
+++ b/test/test_overflow.c
@@ -22,7 +22,7 @@ test_size(SerdWorld* const world,
serd_world_set_limits(world, limits);
SerdSink* sink = serd_sink_new(NULL, NULL, NULL);
- SerdReader* const reader = serd_reader_new(world, syntax, sink);
+ SerdReader* const reader = serd_reader_new(world, syntax, 0U, sink);
if (!reader) {
return SERD_BAD_STACK;
}