From 1e37ed3bd92db205100add33a64f38c250aca1d7 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 6 Dec 2012 20:00:25 -0800 Subject: [PATCH] Warning fix --- platform/apple_location_service.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/apple_location_service.mm b/platform/apple_location_service.mm index d8486aaf07..ffaa587a38 100644 --- a/platform/apple_location_service.mm +++ b/platform/apple_location_service.mm @@ -72,7 +72,7 @@ public: - (id)initWithService:(AppleLocationService *) service { - if (self = [super init]) + if ((self = [super init])) m_service = service; return self; }