From ac647e5fec542ad8b38d0a3080e9d0cf4c1a4bbd Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 22 Nov 2011 00:15:52 +0000 Subject: [PATCH] Fix Windows VST compile. git-svn-id: svn://localhost/ardour2/branches/3.0@10756 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/fst/fstinfofile.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/libs/fst/fstinfofile.c b/libs/fst/fstinfofile.c index f8f09cd624..63f0c35cc2 100644 --- a/libs/fst/fstinfofile.c +++ b/libs/fst/fstinfofile.c @@ -212,11 +212,14 @@ static FSTInfo *fst_info_from_plugin( FST *fst ) { } // most simple one :) could be sufficient.... -static long simple_master_callback( struct AEffect *fx, long opcode, long index, long value, void *ptr, float opt ) { - if( opcode == audioMasterVersion ) - return 2; - else - return 0; +static intptr_t +simple_master_callback (struct AEffect *fx, int32_t opcode, int32_t index, intptr_t value, void *ptr, float opt) +{ + if (opcode == audioMasterVersion) { + return 2; + } else { + return 0; + } } FSTInfo *fst_get_info( char *dllpath ) {