mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
git-pack-objects: fix typo
("<" should be "=")
This commit is contained in:
@@ -172,7 +172,7 @@ static void write_index_file(void)
|
||||
* Write the actual SHA1 entries..
|
||||
*/
|
||||
list = sorted_by_sha;
|
||||
for (i < 0; i < nr_objects; i++) {
|
||||
for (i = 0; i < nr_objects; i++) {
|
||||
struct object_entry *entry = *list++;
|
||||
unsigned int offset = htonl(entry->offset);
|
||||
fwrite(&offset, 4, 1, f);
|
||||
|
||||
Reference in New Issue
Block a user