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>2018-11-25 22:12:47 +0100
commit29f0cefc019e8e93e8ae9bb016c8dc93711173a0 (patch)
tree84b24003561214f4e3444c4f926cea3ba70d2ef9 /src/world.c
parent957fbbae9d51e3850f00ed109052ce7bab7087e0 (diff)
downloadserd-29f0cefc019e8e93e8ae9bb016c8dc93711173a0.tar.gz
serd-29f0cefc019e8e93e8ae9bb016c8dc93711173a0.tar.bz2
serd-29f0cefc019e8e93e8ae9bb016c8dc93711173a0.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 205646f2..2a89993f 100644
--- a/src/world.c
+++ b/src/world.c
@@ -76,7 +76,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;
}