use proper constant instead of comment (noted by nnorwitz)

This commit is contained in:
Just van Rossum 2003-02-28 08:54:01 +00:00
parent a72e2f9d10
commit f4ecc751b1

View file

@ -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);