diff options
author | kan <kan@FreeBSD.org> | 2004-01-19 20:03:43 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-01-19 20:03:43 +0000 |
commit | 1968ea331b9a0e1777a5f2629482c3e5ff851dc8 (patch) | |
tree | df1cc5e709fbf50876692768b8efd022441ed7d8 /sys/isofs | |
parent | acff10ceaccffd3e88bbb7bd07150b994577dccb (diff) | |
download | FreeBSD-src-1968ea331b9a0e1777a5f2629482c3e5ff851dc8.zip FreeBSD-src-1968ea331b9a0e1777a5f2629482c3e5ff851dc8.tar.gz |
Spell magic '16' number as IO_SEQSHIFT.
Diffstat (limited to 'sys/isofs')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vnops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/isofs/cd9660/cd9660_vnops.c b/sys/isofs/cd9660/cd9660_vnops.c index 2e4eaf2..5105322 100644 --- a/sys/isofs/cd9660/cd9660_vnops.c +++ b/sys/isofs/cd9660/cd9660_vnops.c @@ -272,7 +272,7 @@ cd9660_read(ap) int seqcount; long size, n, on; - seqcount = ap->a_ioflag >> 16; + seqcount = ap->a_ioflag >> IO_SEQSHIFT; if (uio->uio_resid == 0) return (0); |