mirror of
https://github.com/darlinghq/darling-security.git
synced 2024-11-23 12:09:41 +00:00
Fix i386 build (once again 'unsigned long' vs 'unsigned int')
This commit is contained in:
parent
a479953317
commit
14976be0a9
@ -47,7 +47,7 @@ CFClass::CFClass(const char *name)
|
||||
|
||||
// update because we are now doing our own reference counting
|
||||
version |= _kCFRuntimeCustomRefCount; // see ma, no hands!
|
||||
refcount = refCountForType;
|
||||
refcount = (decltype(refcount)) refCountForType;
|
||||
|
||||
// register
|
||||
typeID = _CFRuntimeRegisterClass(this);
|
||||
|
Loading…
Reference in New Issue
Block a user