From 7e4c795ce4a388353704b002f5c46ddea8e8620d Mon Sep 17 00:00:00 2001
From: Henna Haahti <grejppi@gmail.com>
Date: Tue, 5 Mar 2019 12:55:04 +0200
Subject: Fix building with --dyn-manifest in MSVC

---
 src/world.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/world.c b/src/world.c
index 537f677..7fc5e2a 100644
--- a/src/world.c
+++ b/src/world.c
@@ -571,7 +571,7 @@ lilv_world_load_dyn_manifest(LilvWorld*      world,
 			continue;
 		}
 
-		LilvDynManifest* desc = malloc(sizeof(LilvDynManifest));
+		LilvDynManifest* desc = (LilvDynManifest*)malloc(sizeof(LilvDynManifest));
 		desc->bundle = lilv_node_new_from_node(world, bundle_node);
 		desc->lib    = lib;
 		desc->handle = handle;
-- 
cgit v1.2.1