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-06-21 18:12:03 +0200
commit05601551a3e8350da8053f47ceb121c8de0e692c (patch)
treed91c7a81d6b5a0f77d3ec0b4bf4a34513b6ee0a6 /src/uri.c
parent849ed44090f6808124ea77e4354b9d1fe6e57cb4 (diff)
downloadserd-05601551a3e8350da8053f47ceb121c8de0e692c.tar.gz
serd-05601551a3e8350da8053f47ceb121c8de0e692c.tar.bz2
serd-05601551a3e8350da8053f47ceb121c8de0e692c.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 a9f40937..ab1b1799 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -285,7 +285,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);