aboutsummaryrefslogtreecommitdiffstats
path: root/src/namespaces.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-20 19:44:06 +0000
committerDavid Robillard <d@drobilla.net>2011-01-20 19:44:06 +0000
commit3433e155c739f6a081209ea7422b9fdc7f87a555 (patch)
tree1d193a947ecbac65c3aefc38e00b4d73f5d01146 /src/namespaces.c
parent57683c8352e4a545171f28047617df88a6d4c917 (diff)
downloadserd-3433e155c739f6a081209ea7422b9fdc7f87a555.tar.gz
serd-3433e155c739f6a081209ea7422b9fdc7f87a555.tar.bz2
serd-3433e155c739f6a081209ea7422b9fdc7f87a555.zip
Add writer API.
git-svn-id: http://svn.drobilla.net/serd/trunk@14 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src/namespaces.c')
-rw-r--r--src/namespaces.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/namespaces.c b/src/namespaces.c
index 6c400a3c..409c92b9 100644
--- a/src/namespaces.c
+++ b/src/namespaces.c
@@ -93,10 +93,10 @@ serd_namespaces_add(SerdNamespaces ns,
SERD_API
bool
-serd_namespaces_expand(SerdNamespaces ns,
- const SerdString* qname,
- SerdChunk* uri_prefix,
- SerdChunk* uri_suffix)
+serd_namespaces_expand(const SerdNamespaces ns,
+ const SerdString* qname,
+ SerdChunk* uri_prefix,
+ SerdChunk* uri_suffix)
{
const uint8_t* colon = memchr((const char*)qname->buf, ':', qname->n_bytes);
if (!colon) {