summaryrefslogtreecommitdiff
path: root/libs/fluidsynth/src/fluidsynth_priv.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fluidsynth/src/fluidsynth_priv.h')
-rw-r--r--libs/fluidsynth/src/fluidsynth_priv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/fluidsynth/src/fluidsynth_priv.h b/libs/fluidsynth/src/fluidsynth_priv.h
index 659aa53a0a..1567a10a8c 100644
--- a/libs/fluidsynth/src/fluidsynth_priv.h
+++ b/libs/fluidsynth/src/fluidsynth_priv.h
@@ -186,7 +186,7 @@ typedef void (*fluid_rvoice_function_t)(void *obj, const fluid_rvoice_param_t pa
#define FLUID_NEW(_t) (_t*)malloc(sizeof(_t))
#define FLUID_ARRAY_ALIGNED(_t,_n,_a) (_t*)malloc((_n)*sizeof(_t) + ((unsigned int)_a - 1u))
#define FLUID_ARRAY(_t,_n) FLUID_ARRAY_ALIGNED(_t,_n,1u)
-#define FLUID_FREE(_p) free(_p)
+#define FLUID_FREE(_p) fluid_free(_p)
/* File access */
#define FLUID_FOPEN(_f,_m) fopen(_f,_m)