Skip to content

Commit

Permalink
Replace weird code that triggers a warning with a functional equivalent
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanj committed Nov 3, 2014
1 parent 309b824 commit feefc47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Views/GLFileView.m
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ - (NSString *) parseBlame:(NSString *)txt

int n;
for(n=1;n<nLines;n++){
line=[lines objectAtIndex:i++];
i++;
do{
line=[lines objectAtIndex:i++];
}while([line characterAtIndex:0]!='\t');
Expand Down

0 comments on commit feefc47

Please sign in to comment.