fixes for 98% of all the warnings/errors reported by OS X gcc on tiger
[ardour.git] / libs / ardour / vstfxinfofile.cc
index 2d54f4d1cd31026fb893101ad7ba644a02a14f13..076cdad55fda3770a7ed0da92a028713c4214e49 100755 (executable)
@@ -297,12 +297,12 @@ static VSTFXInfo* vstfx_info_from_plugin(VSTFX *vstfx)
 /* A simple 'dummy' audiomaster callback which should be ok,
 we will only be instantiating the plugin in order to get its info*/
 
-static long simple_master_callback(struct AEffect *fx, long opcode, long index, long value, void *ptr, float opt)
+static long simple_master_callback(struct AEffect *, long opcode, long, long, void *, float)
 {
 
-       if(opcode == audioMasterVersion)
+       if (opcode == audioMasterVersion)
                return 2;
-    else
+       else
                return 0;
 }