From e2f90ca5d3e2f59fa3f5f7a104048efb7f7fc099 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 31 Jul 2016 17:57:55 -0400 Subject: Fix compilation with C++ --- plugins/eg-sampler.lv2/sampler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/eg-sampler.lv2/sampler.c') diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c index 1557656..36acb2f 100644 --- a/plugins/eg-sampler.lv2/sampler.c +++ b/plugins/eg-sampler.lv2/sampler.c @@ -121,7 +121,7 @@ load_sample(LV2_Log_Logger* logger, const char* path) } // Read data - float* const data = malloc(sizeof(float) * info->frames); + float* const data = (float*)malloc(sizeof(float) * info->frames); if (!data) { lv2_log_error(logger, "Failed to allocate memory for sample\n"); return NULL; @@ -431,7 +431,7 @@ save(LV2_Handle instance, return LV2_STATE_SUCCESS; } - LV2_State_Map_Path* map_path = lv2_features_data( + LV2_State_Map_Path* map_path = (LV2_State_Map_Path*)lv2_features_data( features, LV2_STATE__mapPath); if (!map_path) { return LV2_STATE_ERR_NO_FEATURE; -- cgit v1.2.1