Skip to content

Commit 7513a5f

Browse files
committed
Return to C89 compliance
1 parent b93cc07 commit 7513a5f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/MacVim/MMCoreTextView.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,8 @@ - (void)batchDrawData:(NSData *)data
10761076
}
10771077
}
10781078
// fixup relative positioning
1079-
for( CFIndex i = 0; i < offset; ++i ) {
1079+
CFIndex i;
1080+
for( i = 0; i < offset; ++i ) {
10801081
positions[i].x += refPos.x;
10811082
positions[i].y += refPos.y;
10821083
}

0 commit comments

Comments
 (0)