From 72b19e60fe87bec573e0e539fb178842942d21c9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 16 Mar 2015 13:02:20 -0500 Subject: fix compiler warning --- libs/ardour/session_vst.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour') diff --git a/libs/ardour/session_vst.cc b/libs/ardour/session_vst.cc index 4904edc65a..0077fc82e4 100644 --- a/libs/ardour/session_vst.cc +++ b/libs/ardour/session_vst.cc @@ -81,11 +81,11 @@ intptr_t Session::vst_callback ( if (effect && effect->user) { plug = (VSTPlugin *) (effect->user); session = &plug->session(); - SHOW_CALLBACK ("am callback 0x%p, opcode = %d, plugin = \"%s\" ", DEBUG_THREAD_SELF, opcode, plug->name()); + SHOW_CALLBACK ("am callback 0x%p, opcode = %d, plugin = \"%s\" ", (void*) DEBUG_THREAD_SELF, opcode, plug->name()); } else { plug = 0; session = 0; - SHOW_CALLBACK ("am callback 0x%p, opcode = %d", DEBUG_THREAD_SELF, opcode); + SHOW_CALLBACK ("am callback 0x%p, opcode = %d", (void*) DEBUG_THREAD_SELF, opcode); } switch(opcode){ -- cgit v1.2.3