RemoteVstPlugin: coding style fixes

This commit is contained in:
Tobias Doerffel
2012-12-02 22:09:15 +01:00
parent ef68156c71
commit 5f298c0c48

View File

@@ -261,8 +261,7 @@ private:
lock();
if( m_plugin )
{
ret = m_plugin->dispatcher( m_plugin, cmd, param1,
param2, p, f );
ret = m_plugin->dispatcher( m_plugin, cmd, param1, param2, p, f );
}
unlock();
return ret;
@@ -322,7 +321,7 @@ RemoteVstPlugin::RemoteVstPlugin( key_t _shm_in, key_t _shm_out ) :
// process until we have loaded the plugin
while( 1 )
{
{
message m = receiveMessage();
processMessage( m );
if( m.id == IdVstLoadPlugin || m.id == IdQuit )