aboutsummaryrefslogtreecommitdiffstats
path: root/src/uri.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-03-16 16:54:49 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 16:27:02 -0500
commit19b9f627ba195cab7c7ebea9daca9ead6e4f5d9a (patch)
tree39da1a30375903d8446250498b5f386fce515e2a /src/uri.c
parent82f8f804773b10c42b17a30872a59ed76b062794 (diff)
downloadserd-19b9f627ba195cab7c7ebea9daca9ead6e4f5d9a.tar.gz
serd-19b9f627ba195cab7c7ebea9daca9ead6e4f5d9a.tar.bz2
serd-19b9f627ba195cab7c7ebea9daca9ead6e4f5d9a.zip
Rename SerdChunk to SerdStringView
Diffstat (limited to 'src/uri.c')
-rw-r--r--src/uri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uri.c b/src/uri.c
index c25f2155..18154329 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -232,7 +232,7 @@ remove_dot_segments(const char* const path, const size_t len, size_t* const up)
/// Merge `base` and `path` in-place
static void
-merge(SerdChunk* const base, SerdChunk* const path)
+merge(SerdStringView* const base, SerdStringView* const path)
{
size_t up = 0;
const char* begin = remove_dot_segments(path->buf, path->len, &up);