--- src/bin/df/df.c 2008/08/06 07:54:07 1.10.2.1 +++ src/bin/df/df.c 2008/08/07 10:01:38 1.10.2.2 @@ -82,7 +82,7 @@ char *getmntpt(char *); int quadwidth(int64_t); char *makenetvfslist(void); char **makevfslist(char *); -void prthuman(struct statvfs *, long); +void prthuman(struct statvfs *, int64_t); void prthumanval(int64_t); void prtstat(struct statfs *, struct statvfs *, struct maxwidths *); long regetmntinfo(struct statfs **, struct statvfs **, long, char **); @@ -310,7 +310,7 @@ regetmntinfo(struct statfs **mntbufp, st } void -prthuman(struct statvfs *vsfsp, long used) +prthuman(struct statvfs *vsfsp, int64_t used) { prthumanval(vsfsp->f_blocks * vsfsp->f_bsize); prthumanval(used * vsfsp->f_bsize);