aboutsummaryrefslogtreecommitdiffstats
path: root/src/uri_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uri_utils.h')
-rw-r--r--src/uri_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uri_utils.h b/src/uri_utils.h
index 76060d6a..63e67d62 100644
--- a/src/uri_utils.h
+++ b/src/uri_utils.h
@@ -7,8 +7,8 @@
#include "string_utils.h"
#include "serd/attributes.h"
-#include "serd/string_view.h"
#include "serd/uri.h"
+#include "zix/string_view.h"
#include <stdbool.h>
#include <string.h>
@@ -19,7 +19,7 @@ typedef struct {
} SlashIndexes;
static inline bool
-slice_equals(const SerdStringView* a, const SerdStringView* b)
+slice_equals(const ZixStringView* a, const ZixStringView* b)
{
return a->length == b->length && !strncmp(a->data, b->data, a->length);
}