aboutsummaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node.c b/src/node.c
index 0e95942f..5901f159 100644
--- a/src/node.c
+++ b/src/node.c
@@ -25,7 +25,7 @@ serd_node_from_string(SerdType type, const uint8_t* buf)
{
size_t buf_n_bytes;
const size_t buf_n_chars = serd_strlen(buf, &buf_n_bytes);
- SerdNode ret = { type, buf_n_bytes, buf_n_chars, buf };
+ SerdNode ret = { buf, buf_n_bytes, buf_n_chars, type };
return ret;
}
@@ -105,7 +105,7 @@ serd_node_new_uri(const SerdURI* uri, const SerdURI* base, SerdURI* out)
const size_t len = serd_uri_string_length(&abs_uri);
uint8_t* buf = malloc(len + 1);
- SerdNode node = { SERD_URI, len + 1, len, buf }; // FIXME: UTF-8
+ SerdNode node = { buf, len + 1, len, SERD_URI }; // FIXME: UTF-8
uint8_t* ptr = buf;
const size_t actual_len = serd_uri_serialise(&abs_uri, string_sink, &ptr);