summaryrefslogtreecommitdiffstats
path: root/usr.sbin/quot/quot.c
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1999-11-27 17:05:08 +0000
committercharnier <charnier@FreeBSD.org>1999-11-27 17:05:08 +0000
commit1d8a1bacefc75efe8a785ad5987ce9891a2d00da (patch)
treebefac766cd677ac4d2b15c4bba5c92d559aaeca6 /usr.sbin/quot/quot.c
parentf5e65181769eaf6687b2e1007369101fba98d574 (diff)
downloadFreeBSD-src-1d8a1bacefc75efe8a785ad5987ce9891a2d00da.zip
FreeBSD-src-1d8a1bacefc75efe8a785ad5987ce9891a2d00da.tar.gz
Do not repeat the name of the flag. Change alloc to allocate for better
spelling of printed messages.
Diffstat (limited to 'usr.sbin/quot/quot.c')
-rw-r--r--usr.sbin/quot/quot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/quot/quot.c b/usr.sbin/quot/quot.c
index fcfea6a..9153bd1 100644
--- a/usr.sbin/quot/quot.c
+++ b/usr.sbin/quot/quot.c
@@ -330,7 +330,7 @@ dofsizes(fd,super,name)
maxino = super->fs_ncg * super->fs_ipg - 1;
#ifdef COMPAT
if (!(fsizes = (struct fsizes *)malloc(sizeof(struct fsizes))))
- errx(1, "alloc fsize structure");
+ errx(1, "allocate fsize structure");
#endif /* COMPAT */
for (inode = 0; inode < maxino; inode++) {
errno = 0;
@@ -361,7 +361,7 @@ dofsizes(fd,super,name)
if (!fp || ksz < fp->fsz_first) {
if (!(fp = (struct fsizes *)
malloc(sizeof(struct fsizes))))
- errx(1, "alloc fsize structure");
+ errx(1, "allocate fsize structure");
fp->fsz_next = *fsp;
*fsp = fp;
fp->fsz_first = (ksz / FSZCNT) * FSZCNT;
@@ -483,7 +483,7 @@ usage()
#ifdef COMPAT
fprintf(stderr,"usage: quot [-nfcvha] [filesystem ...]\n");
#else /* COMPAT */
- fprintf(stderr,"usage: quot [-acfhknv] [ filesystem ... ]\n");
+ fprintf(stderr,"usage: quot [-acfhknv] [filesystem ...]\n");
#endif /* COMPAT */
exit(1);
}
OpenPOWER on IntegriCloud