aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2015-02-15 03:08:31 +0100
committerMax <post@wickenrode.com>2015-02-15 03:08:31 +0100
commit3fce6977d519fa80a96fcfa7baa476a3675a70da (patch)
tree99785d4b0671134abe72d9f80767942628a4a864 /Source
parentbaa1593d4bd84b2eebc41821d5ff2b70013371bf (diff)
downloadsequelpro-3fce6977d519fa80a96fcfa7baa476a3675a70da.tar.gz
sequelpro-3fce6977d519fa80a96fcfa7baa476a3675a70da.tar.bz2
sequelpro-3fce6977d519fa80a96fcfa7baa476a3675a70da.zip
Fix compile error on older SDKs
Diffstat (limited to 'Source')
-rw-r--r--Source/SPOSInfo.m6
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 ()