From 7a0d649727b4b5a15a88a1270aa444d4ed8ce779 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 20 Feb 2021 19:18:28 -0500 Subject: Replace multiple stream callbacks with SerdEvent This makes plumbing easier since everything goes through the same "stream" and only one callback is required to handling everything. It's also more easily extensible in case more event types need to be added in the future. --- test/test_overflow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_overflow.c') diff --git a/test/test_overflow.c b/test/test_overflow.c index 2d7c2542..f29c8652 100644 --- a/test/test_overflow.c +++ b/test/test_overflow.c @@ -30,7 +30,7 @@ test_size(SerdWorld* const world, const SerdSyntax syntax, const size_t stack_size) { - SerdSink* sink = serd_sink_new(NULL, NULL); + SerdSink* sink = serd_sink_new(NULL, NULL, NULL); SerdReader* const reader = serd_reader_new(world, syntax, sink, stack_size); assert(reader); -- cgit v1.2.1