aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/formant_filter_4300.c2
-rw-r--r--src/waveguide_mesh_2670.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/formant_filter_4300.c b/src/formant_filter_4300.c
index aa16762..ab7dbc7 100644
--- a/src/formant_filter_4300.c
+++ b/src/formant_filter_4300.c
@@ -75,7 +75,7 @@ typedef struct
/* Linear interpolation */
-inline float
+inline static float
linear(float bot, float top, float pos, float val1, float val2)
{
float t = (pos - bot) / (top - bot);
diff --git a/src/waveguide_mesh_2670.c b/src/waveguide_mesh_2670.c
index 4d19e67..4f9fc42 100644
--- a/src/waveguide_mesh_2670.c
+++ b/src/waveguide_mesh_2670.c
@@ -146,7 +146,7 @@ wgmesh_connect_port(LADSPA_Handle instance,
}
-inline void excite_mesh(WgMesh* plugin, LADSPA_Data power, LADSPA_Data ex_x, LADSPA_Data ex_y)
+inline static void excite_mesh(WgMesh* plugin, LADSPA_Data power, LADSPA_Data ex_x, LADSPA_Data ex_y)
{
int i=ex_x,j=ex_y;
LADSPA_Data temp;