diff options
Diffstat (limited to 'bin/df/df.c')
-rw-r--r-- | bin/df/df.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/df/df.c b/bin/df/df.c index 9bb5204..ae15cf2 100644 --- a/bin/df/df.c +++ b/bin/df/df.c @@ -289,8 +289,8 @@ getmntpt(char *name) } /* - * Make a pass over the filesystem info in ``mntbuf'' filtering out - * filesystem types not in vfslist and possibly re-stating to get + * Make a pass over the file system info in ``mntbuf'' filtering out + * file system types not in vfslist and possibly re-stating to get * current (not cached) info. Returns the new count of valid statfs bufs. */ static long @@ -367,15 +367,15 @@ prthumanval(double bytes) } /* - * Convert statfs returned filesystem size into BLOCKSIZE units. - * Attempts to avoid overflow for large filesystems. + * Convert statfs returned file system size into BLOCKSIZE units. + * Attempts to avoid overflow for large file systems. */ #define fsbtoblk(num, fsbs, bs) \ (((fsbs) != 0 && (fsbs) < (bs)) ? \ (num) / ((bs) / (fsbs)) : (num) * ((fsbs) / (bs))) /* - * Print out status about a filesystem. + * Print out status about a file system. */ static void prtstat(struct statfs *sfsp, struct maxwidths *mwp) @@ -435,7 +435,7 @@ prtstat(struct statfs *sfsp, struct maxwidths *mwp) /* * Update the maximum field-width information in `mwp' based on - * the filesystem specified by `sfsp'. + * the file system specified by `sfsp'. */ static void update_maxwidths(struct maxwidths *mwp, struct statfs *sfsp) @@ -483,7 +483,7 @@ usage(void) { (void)fprintf(stderr, - "usage: df [-b | -H | -h | -k | -m | -P] [-ailn] [-t type] [file | filesystem ...]\n"); + "usage: df [-b | -H | -h | -k | -m | -P] [-ailn] [-t type] [file | file system ...]\n"); exit(EX_USAGE); } |