summaryrefslogtreecommitdiff
path: root/indra/llcommon/llsys_objc.mm
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2022-11-11 18:09:23 -0800
committerBrad Kittenbrink <brad@lindenlab.com>2022-11-11 18:09:23 -0800
commit076737cb6c28e9e5ea47cd4cb6ea9c5c514e578b (patch)
tree34222173af225c920436d05fab3aaa65d395d70f /indra/llcommon/llsys_objc.mm
parent22f6adefb892ab83168e6236e2453b62314d0db6 (diff)
DRTVWR-575 fix LLGetDarwinOSInfo for xcode-14.1. NSInteger is now 64 bits
Diffstat (limited to 'indra/llcommon/llsys_objc.mm')
-rw-r--r--indra/llcommon/llsys_objc.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsys_objc.mm b/indra/llcommon/llsys_objc.mm
index 9359503a19..ccd39a2d46 100644
--- a/indra/llcommon/llsys_objc.mm
+++ b/indra/llcommon/llsys_objc.mm
@@ -32,7 +32,7 @@ static NSInteger intAtStringIndex(NSArray *array, int index)
return [(NSString *)[array objectAtIndex:index] integerValue];
}
-bool LLGetDarwinOSInfo(NSInteger &major, NSInteger &minor, NSInteger &patch)
+bool LLGetDarwinOSInfo(int64_t &major, int64_t &minor, int64_t &patch)
{
if (NSAppKitVersionNumber > NSAppKitVersionNumber10_8)
{