Commit Graph
1 Commits
Author SHA1 Message Date
panzhe 5815babc4f Fix swapped lseek() arguments
lseek() expects (fd, offset, whence). The test passed (fd, SEEK_SET, 0),
which does not conform to the function signature. It should be corrected
to (fd, 0, SEEK_SET).
2026-09-07 09:58:09 +08:00