mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Fix to make value pointed to by mutationsPtr be unsigned long.
This commit is contained in:
parent
897e5fc7dd
commit
09e527c0fd
7 changed files with 11 additions and 11 deletions
|
@ -61,7 +61,7 @@
|
|||
{
|
||||
@public
|
||||
GSIMapTable_t map;
|
||||
NSUInteger _version;
|
||||
unsigned long _version;
|
||||
}
|
||||
@end
|
||||
|
||||
|
@ -462,7 +462,7 @@ static SEL objSel;
|
|||
objects: (__unsafe_unretained id[])stackbuf
|
||||
count: (NSUInteger)len
|
||||
{
|
||||
state->mutationsPtr = (unsigned long *)&_version;
|
||||
state->mutationsPtr = &_version;
|
||||
return GSIMapCountByEnumeratingWithStateObjectsCount
|
||||
(&map, state, stackbuf, len);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue