From a1c8e16e166e609c1e9e9f07154eaca4617bfccf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 29 Dec 2017 14:37:46 -0500 Subject: Fix inconsistent parameter names --- src/sratom.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/sratom.c') diff --git a/src/sratom.c b/src/sratom.c index 3537587..1d35df2 100644 --- a/src/sratom.c +++ b/src/sratom.c @@ -114,8 +114,8 @@ SRATOM_API void sratom_set_sink(Sratom* sratom, const char* base_uri, - SerdStatementSink write_statement, - SerdEndSink end_anon, + SerdStatementSink sink, + SerdEndSink end_sink, void* handle) { if (base_uri) { @@ -124,8 +124,8 @@ sratom_set_sink(Sratom* sratom, USTR(base_uri), NULL, NULL); serd_uri_parse(sratom->base_uri.buf, &sratom->base); } - sratom->write_statement = write_statement; - sratom->end_anon = end_anon; + sratom->write_statement = sink; + sratom->end_anon = end_sink; sratom->handle = handle; } -- cgit v1.2.1