Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/macx
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2012-08-18 15:38:50 +0400
committerMikkel Krautz <mikkel@krautz.dk>2012-08-18 15:38:50 +0400
commit971f0ff212adffa44de36027da6dac6c504416e7 (patch)
tree75dfec0dbeadbd3bd3938cde984ffaaed2d03b71 /macx
parentb6d8bf3a11b6cf205b02e0a7adbbec5392d4f623 (diff)
macx/osax: fix unused parameter warnings.
Diffstat (limited to 'macx')
-rw-r--r--macx/osax/osax.m3
1 files changed, 3 insertions, 0 deletions
diff --git a/macx/osax/osax.m b/macx/osax/osax.m
index 7621f8c40..fce9cdea3 100644
--- a/macx/osax/osax.m
+++ b/macx/osax/osax.m
@@ -33,6 +33,9 @@
__attribute__ ((visibility("default")))
OSErr MumbleOverlayEventHandler(const AppleEvent *ae, AppleEvent *reply, long refcon) {
+ (void) ae;
+ (void) reply;
+ (void) refcon;
/* Is the overlay already loaded into the process? */
if (dlsym(RTLD_DEFAULT, "MumbleOverlayEntryPoint")) {