From 604e5aeaa45533acd1469d117b32f53824ab8577 Mon Sep 17 00:00:00 2001 From: projectpitchin Date: Fri, 20 Jan 2017 18:15:59 -0600 Subject: [PATCH] Fixed a spelling error in a debug message in RemoteVstPlugin::load. (#3279) --- plugins/vst_base/RemoteVstPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vst_base/RemoteVstPlugin.cpp b/plugins/vst_base/RemoteVstPlugin.cpp index 6b6c72e94..97e1e3a6a 100644 --- a/plugins/vst_base/RemoteVstPlugin.cpp +++ b/plugins/vst_base/RemoteVstPlugin.cpp @@ -737,7 +737,7 @@ bool RemoteVstPlugin::load( const std::string & _plugin_file ) m_plugin = mainEntry( hostCallback ); if( m_plugin == NULL ) { - debugMessage( "mainEntry prodecure returned NULL\n" ); + debugMessage( "mainEntry procedure returned NULL\n" ); return false; }