mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
We usually check return value of syscalls or glibc functions by it is negative or not, something like that `if (stat(path, &st) < 0)`. Let's also use the same style for lseek() and friends even the type of their return value is off_t. Note, fseeko() returns int, instead of off_t.