mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Add required cast in case nil is not defined as id
This commit is contained in:
parent
b55ee6b0c5
commit
0af2c6de72
2 changed files with 2 additions and 2 deletions
|
@ -1166,7 +1166,7 @@ static NSNotificationCenter *default_center = nil;
|
|||
/*
|
||||
* Now observers with a nil object.
|
||||
*/
|
||||
n = GSIMapNodeForSimpleKey(m, (GSIMapKey)nil);
|
||||
n = GSIMapNodeForSimpleKey(m, (GSIMapKey)(id)nil);
|
||||
if (n != 0)
|
||||
{
|
||||
o = purgeCollectedFromMapNode(m, n);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue