From 9023304b7abeaba0693e7259829b3366baffd54c Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sat, 28 Feb 2009 17:13:53 +0100 Subject: [PATCH] ZynAddSubFX: fixed compiler warnings --- plugins/zynaddsubfx/remote_zynaddsubfx.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/zynaddsubfx/remote_zynaddsubfx.cpp b/plugins/zynaddsubfx/remote_zynaddsubfx.cpp index b179e50eb..35a13b474 100644 --- a/plugins/zynaddsubfx/remote_zynaddsubfx.cpp +++ b/plugins/zynaddsubfx/remote_zynaddsubfx.cpp @@ -114,8 +114,8 @@ public: pthread_mutex_lock( &__gui_mutex ); __gui_messages.push( _m ); pthread_mutex_unlock( &__gui_mutex ); - return true; } + return true; } virtual ~remoteZynAddSubFX() @@ -287,6 +287,8 @@ void * guiThread( void * ) pthread_mutex_unlock( &__gui_mutex ); } Fl::flush(); + + return NULL; }