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>2018-12-30 17:56:22 -0500
commitcedc9530cee8518f92d949984d173be1e707e31e (patch)
tree71ef784f07a444789a5074d075f33339128b998d /src/uri.c
parent65efdce71c3f77286a9416dc81b6041c51584b77 (diff)
downloadserd-cedc9530cee8518f92d949984d173be1e707e31e.tar.gz
serd-cedc9530cee8518f92d949984d173be1e707e31e.tar.bz2
serd-cedc9530cee8518f92d949984d173be1e707e31e.zip
Rename SerdChunk to SerdSlice
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 0dbbcb4f..a891c6df 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -280,7 +280,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(SerdSlice* base, SerdSlice* path)
{
size_t up;
const char* begin = remove_dot_segments(path->buf, path->len, &up);