aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-06-13 15:18:27 -0400
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit06b775c1de2173720fe12abec2fbe225c353a12b (patch)
tree8d244b45091234136a47c038b33042a77f740134 /src/world.c
parent897590f6408b9b2b1aae2a060465da6d0faf42be (diff)
downloadserd-06b775c1de2173720fe12abec2fbe225c353a12b.tar.gz
serd-06b775c1de2173720fe12abec2fbe225c353a12b.tar.bz2
serd-06b775c1de2173720fe12abec2fbe225c353a12b.zip
Shorten node constructor names
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c
index ebafcfef..a99bff8a 100644
--- a/src/world.c
+++ b/src/world.c
@@ -81,7 +81,7 @@ serd_world_new(void)
{
SerdWorld* world = (SerdWorld*)calloc(1, sizeof(SerdWorld));
- world->blank_node = serd_node_new_blank("b0000000000");
+ world->blank_node = serd_new_blank("b0000000000");
return world;
}