From 7270f8982a6c1ebe2e592204d26d6abf2a0c3741 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Tue, 7 Oct 2014 16:51:25 +0200 Subject: [PATCH] (OSX) Get rid of unused variable warnings for now on OSX --- frontend/platform/platform_apple.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/platform/platform_apple.c b/frontend/platform/platform_apple.c index 93c2345ebc..f8a1b87960 100644 --- a/frontend/platform/platform_apple.c +++ b/frontend/platform/platform_apple.c @@ -124,6 +124,9 @@ static void frontend_apple_get_environment_settings(int *argc, char *argv[], return; bundle_url = CFBundleCopyBundleURL(bundle); CFStringRef bundle_path = CFURLCopyPath(bundle_url); + + (void)bundle_path_buf; + (void)home_dir_buf; #ifdef IOS CFURLRef home_dir = CFCopyHomeDirectoryURL();