diff options
| author | Mark Murray <markm@FreeBSD.org> | 2002-10-23 22:09:05 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2002-10-23 22:09:05 +0000 |
| commit | 0b66b1e8ebefab81e1a1b05f47ac193c1c30fa01 (patch) | |
| tree | cb1f7ba2daf0cfa2a130e1330775f9e32e21eb0d /bin | |
| parent | c0762674c91c1b0931711b962e51e04a8200a109 (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/df/df.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/df/df.c b/bin/df/df.c index 58a23204a270..e4cd86eedd5f 100644 --- a/bin/df/df.c +++ b/bin/df/df.c @@ -381,7 +381,8 @@ static void prtstat(struct statfs *sfsp, struct maxwidths *mwp) { static long blocksize; - static int headerlen, timesthrough; + static int timesthrough; + static size_t headerlen; static const char *header; long used, availblks, inodes; @@ -392,7 +393,7 @@ prtstat(struct statfs *sfsp, struct maxwidths *mwp) mwp->total = mwp->used = mwp->avail = strlen(header); } else { header = getbsize(&headerlen, &blocksize); - mwp->total = imax(mwp->total, headerlen); + mwp->total = imax(mwp->total, (int)headerlen); } mwp->used = imax(mwp->used, strlen("Used")); mwp->avail = imax(mwp->avail, strlen("Avail")); @@ -441,7 +442,7 @@ static void update_maxwidths(struct maxwidths *mwp, struct statfs *sfsp) { static long blocksize; - int dummy; + size_t dummy; if (blocksize == 0) getbsize(&dummy, &blocksize); |
