diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-08-03 01:07:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-08-03 01:07:40 +0300 |
commit | 6e9180264d7277979ed575c6e693493535e143dc (patch) | |
tree | 6fa88c80406a0ebc36c2bd9aa6ea9973d25234e8 /sal | |
parent | 6ad69c212f307a8be944cee4c06ca5e0b8abace1 (diff) |
Avoid compiler warning
Diffstat (limited to 'sal')
-rw-r--r-- | sal/inc/sal/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sal/inc/sal/main.h b/sal/inc/sal/main.h index ea58141fe2ab..ffe34d4a0a6e 100644 --- a/sal/inc/sal/main.h +++ b/sal/inc/sal/main.h @@ -102,6 +102,8 @@ static int sal_main(void); - (BOOL)application: (UIApplication *) application didFinishLaunchingWithOptions: (NSDictionary *) launchOptions { + (void) application; + (void) launchOptions; UIWindow *uiw = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; uiw.backgroundColor = [UIColor redColor]; self.window = uiw; |