aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_read_chunk.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_read_chunk.c')
-rw-r--r--test/test_read_chunk.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/test/test_read_chunk.c b/test/test_read_chunk.c
index db2c210a..f5ba8d93 100644
--- a/test/test_read_chunk.c
+++ b/test/test_read_chunk.c
@@ -48,19 +48,13 @@ on_prefix(void* handle, const SerdNode* name, const SerdNode* uri)
}
static SerdStatus
-on_statement(void* const handle,
- const SerdStatementFlags flags,
- const SerdNode* const graph,
- const SerdNode* const subject,
- const SerdNode* const predicate,
- const SerdNode* const object)
+on_statement(void* const handle,
+ const SerdStatementFlags flags,
+ const SerdStatement* const statement)
{
(void)handle;
(void)flags;
- (void)graph;
- (void)subject;
- (void)predicate;
- (void)object;
+ (void)statement;
++n_statement;
return SERD_SUCCESS;