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>2022-01-13 15:33:54 -0500
commitfaac2e52df494481dc28168a856058a414a913f2 (patch)
tree96f6d9433fc7f23a0e1aabdffd61404a273a28cc /src/uri.c
parent97258f0e85834d71b17e3c1997a5c7dc136e0b98 (diff)
downloadserd-faac2e52df494481dc28168a856058a414a913f2.tar.gz
serd-faac2e52df494481dc28168a856058a414a913f2.tar.bz2
serd-faac2e52df494481dc28168a856058a414a913f2.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 a7c7a212..82221d7a 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -280,7 +280,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);