mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
use proper constant instead of comment (noted by nnorwitz)
This commit is contained in:
parent
a72e2f9d10
commit
f4ecc751b1
1 changed files with 1 additions and 1 deletions
|
@ -664,7 +664,7 @@ read_directory(char *archive)
|
|||
"'%.200s'", archive);
|
||||
return NULL;
|
||||
}
|
||||
fseek(fp, -22, 2); /* Seek from end of file */
|
||||
fseek(fp, -22, SEEK_END);
|
||||
header_end = ftell(fp);
|
||||
if (fread(endof_central_dir, 1, 22, fp) != 22) {
|
||||
fclose(fp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue