diff --git a/src/wine-host/vst-host.cpp b/src/wine-host/vst-host.cpp index f75fe87a..0a16ab60 100644 --- a/src/wine-host/vst-host.cpp +++ b/src/wine-host/vst-host.cpp @@ -48,7 +48,7 @@ int main() { // TODO: Fall back to the old entry points const auto vst_entry_point = reinterpret_cast( - GetProcAddress(vst_handle, "VSTPluginMain")); + reinterpret_cast(GetProcAddress(vst_handle, "VSTPluginMain"))); // TODO: Check whether this returned a null pointer AEffect* plugin = vst_entry_point(host_callback);