aboutsummaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-12-29 19:56:13 -0500
committerDavid Robillard <d@drobilla.net>2021-03-07 15:32:23 -0500
commitf4b1ec91cff0a543a8f7e553ab2113a1c31e0d86 (patch)
treedabb4b57ee6246d050ca45c15d6f93f7c59a5e5f /src/node.c
parent5ea69340e389163cfea54c16a466672b9b7284b8 (diff)
downloadserd-f4b1ec91cff0a543a8f7e553ab2113a1c31e0d86.tar.gz
serd-f4b1ec91cff0a543a8f7e553ab2113a1c31e0d86.tar.bz2
serd-f4b1ec91cff0a543a8f7e553ab2113a1c31e0d86.zip
Rename SerdType to SerdNodeType
The old name will be even more ambiguous with the increased scope.
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 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;