diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-04 17:10:36 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-06 11:58:22 +0200 |
commit | 8a7b5995f039e43ae918dee691ebb8f960f98db6 (patch) | |
tree | d854c52618fe4954929766c74dacef7b364992c4 /hurd | |
parent | 027bc17eca80bd379663e645aa9a7c59573bf0de (diff) |
hurd: fix type of optimal_transfer_size
* hurd/shared.h (struct shared_io): Use blksize_t for optimal_transfer_size.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/shared.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/shared.h b/hurd/shared.h index 6f136376..25747eb9 100644 --- a/hurd/shared.h +++ b/hurd/shared.h @@ -66,7 +66,7 @@ struct shared_io int use_read_size; /* read_size is meaningful */ off_t read_size; - size_t optimal_transfer_size; /* users should try to have the + blksize_t optimal_transfer_size; /* users should try to have the arguments to io_prenotify, etc. be multiples of this value if it is nonzero. */ |