From 5f33f1ea77879a640c87220eef3e45854925a16e Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 25 Jul 2010 11:33:59 +0200 Subject: [PATCH] RemoteVstPlugin: silence compiler warning Initialize variable of type DWORD with 0 instead of NULL. --- plugins/vst_base/remote_vst_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vst_base/remote_vst_plugin.cpp b/plugins/vst_base/remote_vst_plugin.cpp index bfeffb0be..1da5a6a65 100644 --- a/plugins/vst_base/remote_vst_plugin.cpp +++ b/plugins/vst_base/remote_vst_plugin.cpp @@ -104,7 +104,7 @@ class RemoteVstPlugin; RemoteVstPlugin * __plugin = NULL; -DWORD __GuiThreadID = NULL; +DWORD __GuiThreadID = 0;