summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/afs/src/milko/lib/vstatus/vstatus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/afs/src/milko/lib/vstatus/vstatus.c b/usr.sbin/afs/src/milko/lib/vstatus/vstatus.c
index 7fd943bc6a9..d1a0ca5def0 100644
--- a/usr.sbin/afs/src/milko/lib/vstatus/vstatus.c
+++ b/usr.sbin/afs/src/milko/lib/vstatus/vstatus.c
@@ -73,7 +73,7 @@ vstatus_read (int fd, vstatus *v)
}
len = VSTATUS_SIZE;
- ret = lseek (fd, SEEK_SET, 0);
+ ret = lseek (fd, 0, SEEK_SET);
if (ret) {
ret = errno;
goto err_out;
@@ -129,7 +129,7 @@ vstatus_write (int fd, vstatus *v)
}
len = VSTATUS_SIZE;
- ret = lseek (fd, SEEK_SET, 0);
+ ret = lseek (fd, 0, SEEK_SET);
if (ret) {
ret = errno;
goto err_out;