fix incorrect enumeration end parameter

This commit is contained in:
rfm 2024-02-13 12:59:12 +00:00
parent 815556ddf9
commit 88e43d73a6

View file

@ -84,7 +84,7 @@
keys = [keys sortedArrayUsingSelector: @selector(compare:)];
[m appendString: @" UserInfo={"];
FOR_IN (NSString*, k, keys)
FOR_IN(NSString*, k, keys)
{
id o = [_userInfo objectForKey: k];
@ -112,7 +112,7 @@
[m appendString: [o description]];
}
}
END_FOR_IN (enumerator)
END_FOR_IN(keys)
[m appendString: @"}"];
}