Skip to content

Commit

Permalink
Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Mitchell committed Aug 7, 2017
1 parent df15b6d commit 7501a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FScriptFramework/FSObjectBrowserView.m
Original file line number Diff line number Diff line change
Expand Up @@ -1861,7 +1861,7 @@ - (void)sendMessageAction:(id)sender
[arguments addObject:[result result]];
else
{
NSMutableString *errorArgumentString = [NSString stringWithFormat:@"Argument %ld %@", (long)(i+1), [result errorMessage]];
NSString *errorArgumentString = [NSString stringWithFormat:@"Argument %ld %@", (long)(i+1), [result errorMessage]];

[result inspectBlocksInCallStack];
[f selectTextAtIndex:i];
Expand Down

0 comments on commit 7501a63

Please sign in to comment.