diff options
Diffstat (limited to 'tools/serd-filter.c')
-rw-r--r-- | tools/serd-filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/serd-filter.c b/tools/serd-filter.c index 53424e62..464a727e 100644 --- a/tools/serd-filter.c +++ b/tools/serd-filter.c @@ -16,10 +16,10 @@ #include "serd/sink.h" #include "serd/statement.h" #include "serd/status.h" -#include "serd/string_view.h" #include "serd/syntax.h" #include "serd/world.h" #include "serd/writer.h" +#include "zix/string_view.h" #include <stdarg.h> #include <stdbool.h> @@ -84,7 +84,7 @@ parse_pattern(SerdWorld* const world, const bool inclusive) { SerdAllocator* const allocator = serd_world_allocator(world); - SerdEnv* const env = serd_env_new(allocator, serd_empty_string()); + SerdEnv* const env = serd_env_new(allocator, zix_empty_string()); PatternEventContext ctx = {allocator, {NULL, NULL, NULL, NULL}}; SerdSink* in_sink = serd_sink_new(allocator, &ctx, on_pattern_event, NULL); |