Deleted Added
full compact
34c34
< "$Id: quot.c,v 1.7 1997/10/10 06:31:07 charnier Exp $";
---
> "$Id: quot.c,v 1.8 1998/01/17 16:45:03 bde Exp $";
68a69,71
> *
> * Due to the size of modern disks, we must cast intermediate
> * values to 64 bits to prevent potential overflows.
73c76
< #define SIZE(n) (((n) * 512 + blocksize - 1)/blocksize)
---
> #define SIZE(n) ((int)(((quad_t)(n) * 512 + blocksize - 1)/blocksize))