summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/fst/fstinfofile.c13
1 files 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 ) {