diff options
author | kib <kib@FreeBSD.org> | 2009-06-25 18:46:30 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2009-06-25 18:46:30 +0000 |
commit | a7a5954511a4b948ae8218744bc2069641a3ab19 (patch) | |
tree | 78b4ad05c311866c8b27041ac4ed99ffd980653d /sys/fs/coda/coda_psdev.c | |
parent | eb2a6cf16eda6c60423ca640ec4c2a4e7a04373e (diff) | |
download | FreeBSD-src-a7a5954511a4b948ae8218744bc2069641a3ab19.zip FreeBSD-src-a7a5954511a4b948ae8218744bc2069641a3ab19.tar.gz |
Change the type of uio_resid member of struct uio from int to ssize_t.
Note that this does not actually enable full-range i/o requests for
64 architectures, and is done now to update KBI only.
Tested by: pho
Reviewed by: jhb, bde (as part of the review of the bigger patch)
Diffstat (limited to 'sys/fs/coda/coda_psdev.c')
-rw-r--r-- | sys/fs/coda/coda_psdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/coda/coda_psdev.c b/sys/fs/coda/coda_psdev.c index b55a5f4..494f30b 100644 --- a/sys/fs/coda/coda_psdev.c +++ b/sys/fs/coda/coda_psdev.c @@ -331,7 +331,7 @@ vc_write(struct cdev *dev, struct uio *uiop, int flag) * Get the rest of the data. */ if (vmp->vm_outSize < uiop->uio_resid) { - myprintf(("vcwrite: more data than asked for (%d < %d)\n", + myprintf(("vcwrite: more data than asked for (%d < %zd)\n", vmp->vm_outSize, uiop->uio_resid)); /* |