diff options
author | Henna Haahti <grejppi@gmail.com> | 2019-03-05 12:55:04 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-31 17:50:38 +0200 |
commit | 7e4c795ce4a388353704b002f5c46ddea8e8620d (patch) | |
tree | 67cadb96d7b2e7b78ed56b5fee6486da2b8d8e3d | |
parent | f15dd76e1bf5dfbb2b46d302efeaf120d0ba69b0 (diff) | |
download | lilv-7e4c795ce4a388353704b002f5c46ddea8e8620d.tar.gz lilv-7e4c795ce4a388353704b002f5c46ddea8e8620d.tar.bz2 lilv-7e4c795ce4a388353704b002f5c46ddea8e8620d.zip |
Fix building with --dyn-manifest in MSVC
-rw-r--r-- | src/world.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |