diff options
author | Max <post@wickenrode.com> | 2015-02-15 03:08:31 +0100 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-02-15 03:08:31 +0100 |
commit | 3fce6977d519fa80a96fcfa7baa476a3675a70da (patch) | |
tree | 99785d4b0671134abe72d9f80767942628a4a864 | |
parent | baa1593d4bd84b2eebc41821d5ff2b70013371bf (diff) | |
download | sequelpro-3fce6977d519fa80a96fcfa7baa476a3675a70da.tar.gz sequelpro-3fce6977d519fa80a96fcfa7baa476a3675a70da.tar.bz2 sequelpro-3fce6977d519fa80a96fcfa7baa476a3675a70da.zip |
Fix compile error on older SDKs
-rw-r--r-- | Source/SPOSInfo.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/SPOSInfo.m b/Source/SPOSInfo.m index 5608e4cf..8d91c067 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 () |