From e4cfc8f43be9e036d2961cc55f6e2ca2a08c761c Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 6 May 2020 01:39:14 +0200 Subject: [PATCH] Fix typo in .dll loading error message --- src/wine-host/plugin-bridge.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wine-host/plugin-bridge.cpp b/src/wine-host/plugin-bridge.cpp index 14262951..0a76adef 100644 --- a/src/wine-host/plugin-bridge.cpp +++ b/src/wine-host/plugin-bridge.cpp @@ -77,8 +77,8 @@ PluginBridge::PluginBridge(std::string plugin_dll_path, vst_host_aeffect(io_context) { // Got to love these C APIs if (plugin_handle == nullptr) { - throw std::runtime_error("Could not load the Windows .DLL file at'" + - plugin_dll_path + "'."); + throw std::runtime_error("Could not load the Windows .dll file at '" + + plugin_dll_path + "'"); } // VST plugin entry point functions should be called `VSTPluginMain`, but