summaryrefslogtreecommitdiff
path: root/libs/ardour/linux_vst_support.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-11-15 02:49:30 +0100
committerRobin Gareus <robin@gareus.org>2016-11-15 02:49:41 +0100
commit5dc24971009b20a662a58a2e01c47df9b6b5526b (patch)
treef05b71ef82013940ec85d5a86af95eb50a4652c1 /libs/ardour/linux_vst_support.cc
parent4e8d705d99d333517757aa212cbcfe712f054f3e (diff)
rework 8e3b6c9ac (fstwin is C code, not C++)
Diffstat (limited to 'libs/ardour/linux_vst_support.cc')
-rw-r--r--libs/ardour/linux_vst_support.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/linux_vst_support.cc b/libs/ardour/linux_vst_support.cc
index 92c3243fb8..065e8bd755 100644
--- a/libs/ardour/linux_vst_support.cc
+++ b/libs/ardour/linux_vst_support.cc
@@ -83,7 +83,7 @@ static VSTState *
vstfx_new ()
{
VSTState* vstfx = (VSTState *) calloc (1, sizeof (VSTState));
- vstfx->init ();
+ vststate_init (vstfx);
return vstfx;
}