File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2430,7 +2430,7 @@ produce more elegant code in C than in Python…)
24302430 for i in range(0, count):
24312431 # Read creation time, as a unix timestamp (seconds since
24322432 # 1970-01-01 00:00:00, the "epoch")
2433- ctime_s = int.from_bytes(content[idx: idx+4], "big")
2433+ ctime_s = int.from_bytes(content[idx: idx+4], "big")
24342434 # Read creation time, as nanoseconds after that timestamps,
24352435 # for extra precision.
24362436 ctime_ns = int.from_bytes(content[idx+4: idx+8], "big")
@@ -2464,7 +2464,7 @@ produce more elegant code in C than in Python…)
24642464 flag_assume_valid = (flags & 0b1000000000000000) != 0
24652465 flag_extended = (flags & 0b0100000000000000) != 0
24662466 assert not flag_extended
2467- flag_stage = flags & 0b0011000000000000
2467+ flag_stage = flags & 0b0011000000000000
24682468 # Length of the name. This is stored on 12 bits, some max
24692469 # value is 0xFFF, 4095. Since names can occasionally go
24702470 # beyond that length, git treats 0xFFF as meaning at least
You can’t perform that action at this time.
0 commit comments