diff options
Diffstat (limited to 'lkm/vinum')
-rw-r--r-- | lkm/vinum/revive.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lkm/vinum/revive.c b/lkm/vinum/revive.c index 2f8117a..216dc48 100644 --- a/lkm/vinum/revive.c +++ b/lkm/vinum/revive.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: revive.c,v 1.1 1998/08/14 06:16:59 grog Exp grog $ + * $Id: revive.c,v 1.1.1.1 1998/09/16 05:56:21 grog Exp $ */ #define REALLYKERNEL @@ -60,7 +60,7 @@ revive_block(int plexno) else plex->revive_blocksize = DEFAULT_REVIVE_BLOCKSIZE; } - size = min(plex->revive_blocksize, plex->length - plex->revived) << DEV_BSHIFT; + size = min(plex->revive_blocksize, (plex->length - plex->revived) << DEV_BSHIFT); s = splbio(); /* Get a buffer */ |