Just a whitespace fix commit

This commit is contained in:
Mazyad Alabduljaleel 2014-07-01 20:28:57 +04:00
parent d96f993d68
commit b648fd9a82
1 changed files with 8 additions and 8 deletions

View File

@ -29,16 +29,16 @@
- (NSInvocation *)_copyInvocation:(NSInvocation *)invocation
{
NSInvocation *copy = [NSInvocation invocationWithMethodSignature:[invocation methodSignature]];
NSUInteger argCount = [[invocation methodSignature] numberOfArguments];
NSUInteger argCount = [[invocation methodSignature] numberOfArguments];
for (int i = 0; i < argCount; i++)
{
char buffer[sizeof(intmax_t)];
[invocation getArgument:(void *)&buffer atIndex:i];
[copy setArgument:(void *)&buffer atIndex:i];
}
for (int i = 0; i < argCount; i++)
{
char buffer[sizeof(intmax_t)];
[invocation getArgument:(void *)&buffer atIndex:i];
[copy setArgument:(void *)&buffer atIndex:i];
}
return copy;
return copy;
}
- (void)forwardInvocation:(NSInvocation *)invocation