mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-02 01:21:08 +00:00
fix incorrect enumeration end parameter
This commit is contained in:
parent
815556ddf9
commit
88e43d73a6
1 changed files with 2 additions and 2 deletions
|
@ -84,7 +84,7 @@
|
||||||
|
|
||||||
keys = [keys sortedArrayUsingSelector: @selector(compare:)];
|
keys = [keys sortedArrayUsingSelector: @selector(compare:)];
|
||||||
[m appendString: @" UserInfo={"];
|
[m appendString: @" UserInfo={"];
|
||||||
FOR_IN (NSString*, k, keys)
|
FOR_IN(NSString*, k, keys)
|
||||||
{
|
{
|
||||||
id o = [_userInfo objectForKey: k];
|
id o = [_userInfo objectForKey: k];
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@
|
||||||
[m appendString: [o description]];
|
[m appendString: [o description]];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
END_FOR_IN (enumerator)
|
END_FOR_IN(keys)
|
||||||
|
|
||||||
[m appendString: @"}"];
|
[m appendString: @"}"];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue