Skip to content

Commit

Permalink
revision --boundary: fix stupid typo
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Mar 6, 2007
1 parent 80e25ce commit 892ae6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion revision.c
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ static void gc_boundary(struct object_array *array)
objects[j] = objects[i];
j++;
}
for (i = j; j < nr; j++)
for (i = j; i < nr; i++)
objects[i].item = NULL;
array->nr = j;
}
Expand Down

0 comments on commit 892ae6b

Please sign in to comment.