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>2020-10-27 13:13:58 +0100
commit3eff44c4784c6f0cfdc8c857ff47f8bdd3ae713c (patch)
tree87346d71b5aa60b980055620597f1a6119c226b0 /src/uri.c
parent085e63e53502adfc16c3830ed6b0b941314b8f8a (diff)
downloadserd-3eff44c4784c6f0cfdc8c857ff47f8bdd3ae713c.tar.gz
serd-3eff44c4784c6f0cfdc8c857ff47f8bdd3ae713c.tar.bz2
serd-3eff44c4784c6f0cfdc8c857ff47f8bdd3ae713c.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 1d46ab20..726b0f54 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -286,7 +286,7 @@ remove_dot_segments(const char* path, size_t len, size_t* up)
/// Merge `base` and `path` in-place
static void
-merge(SerdChunk* base, SerdChunk* path)
+merge(SerdStringView* base, SerdStringView* path)
{
size_t up = 0;
const char* begin = remove_dot_segments(path->buf, path->len, &up);