From 3fce6977d519fa80a96fcfa7baa476a3675a70da Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 15 Feb 2015 03:08:31 +0100 Subject: [PATCH] Fix compile error on older SDKs --- Source/SPOSInfo.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/SPOSInfo.m b/Source/SPOSInfo.m index 5608e4cf7..8d91c0675 100644 --- a/Source/SPOSInfo.m +++ b/Source/SPOSInfo.m @@ -33,9 +33,9 @@ #if __MAC_OS_X_VERSION_MAX_ALLOWED < __MAC_10_10 // This code is available since 10.8 but public only since 10.10 typedef struct { - NSInteger major; - NSInteger minor; - NSInteger patch; + NSInteger majorVersion; + NSInteger minorVersion; + NSInteger patchVersion; } NSOperatingSystemVersion; @interface NSProcessInfo ()