From f4b1ec91cff0a543a8f7e553ab2113a1c31e0d86 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Dec 2018 19:56:13 -0500 Subject: Rename SerdType to SerdNodeType The old name will be even more ambiguous with the increased scope. --- src/node.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/node.c') diff --git a/src/node.c b/src/node.c index 99f15b8a..999e0164 100644 --- a/src/node.c +++ b/src/node.c @@ -39,7 +39,7 @@ #endif SerdNode -serd_node_from_string(SerdType type, const char* str) +serd_node_from_string(SerdNodeType type, const char* str) { if (!str) { return SERD_NODE_NULL; @@ -52,7 +52,7 @@ serd_node_from_string(SerdType type, const char* str) } SerdNode -serd_node_from_substring(SerdType type, const char* str, const size_t len) +serd_node_from_substring(SerdNodeType type, const char* str, const size_t len) { if (!str) { return SERD_NODE_NULL; -- cgit v1.2.1