diff options
-rw-r--r-- | src/writer.c | 2 | ||||
-rw-r--r-- | test/test_uri.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/writer.c b/src/writer.c index 406fb884..7b14133f 100644 --- a/src/writer.c +++ b/src/writer.c @@ -238,7 +238,7 @@ sink(const void* const buf, const size_t len, SerdWriter* const writer) return written; } -SERD_NODISCARD static inline SerdStatus +SERD_NODISCARD static SerdStatus esink(const void* const buf, const size_t len, SerdWriter* const writer) { return sink(buf, len, writer) == len ? SERD_SUCCESS : SERD_ERR_BAD_WRITE; diff --git a/test/test_uri.c b/test/test_uri.c index 5177359c..44afc4d3 100644 --- a/test/test_uri.c +++ b/test/test_uri.c @@ -206,7 +206,7 @@ test_uri_from_string(void) serd_node_free(&base); } -static inline bool +static bool chunk_equals(const SerdChunk* const a, const SerdChunk* const b) { return (!a->len && !b->len && !a->buf && !b->buf) || |