From 33b20e5c20b0bbac5db9d8022ee5499b8cb95b5c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 17 Jan 2012 02:13:19 +0000 Subject: Support compilation as C++ under MSVC++, git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3955 a436a847-0d15-0410-975c-d299462d15a1 --- src/port.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/port.c') diff --git a/src/port.c b/src/port.c index 037fc97..f008020 100644 --- a/src/port.c +++ b/src/port.c @@ -28,7 +28,7 @@ lilv_port_new(LilvWorld* world, uint32_t index, const char* symbol) { - LilvPort* port = malloc(sizeof(struct LilvPortImpl)); + LilvPort* port = (LilvPort*)malloc(sizeof(LilvPort)); port->node = sord_node_copy(node); port->index = index; port->symbol = lilv_node_new(world, LILV_VALUE_STRING, symbol); @@ -232,7 +232,8 @@ lilv_port_get_scale_points(const LilvPlugin* p, p->world->uris.rdfs_label); if (value && label) { - zix_tree_insert(ret, lilv_scale_point_new(value, label), NULL); + zix_tree_insert( + (ZixTree*)ret, lilv_scale_point_new(value, label), NULL); } } lilv_match_end(points); -- cgit v1.2.1