summaryrefslogtreecommitdiffstats
path: root/sbin/growfs/growfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/growfs/growfs.c')
-rw-r--r--sbin/growfs/growfs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sbin/growfs/growfs.c b/sbin/growfs/growfs.c
index 45a7237..148f8ca 100644
--- a/sbin/growfs/growfs.c
+++ b/sbin/growfs/growfs.c
@@ -2146,8 +2146,8 @@ main(int argc, char **argv)
if(ExpertFlag == 0) {
for(j=0; j<FSMAXSNAP; j++) {
if(sblock.fs_snapinum[j]) {
- errx(1, "active snapshot found in file system\n"
- " please remove all snapshots before "
+ errx(1, "active snapshot found in file system; "
+ "please remove all snapshots before "
"using growfs");
}
if(!sblock.fs_snapinum[j]) { /* list is dense */
@@ -2159,16 +2159,16 @@ main(int argc, char **argv)
if (ExpertFlag == 0 && Nflag == 0) {
printf("We strongly recommend you to make a backup "
- "before growing the Filesystem\n\n"
- " Did you backup your data (Yes/No) ? ");
+ "before growing the file system.\n"
+ "Did you backup your data (Yes/No)? ");
fgets(reply, (int)sizeof(reply), stdin);
if (strcmp(reply, "Yes\n")){
- printf("\n Nothing done \n");
+ printf("\nNothing done\n");
exit (0);
}
}
- printf("new file systemsize is: %jd frags\n", (intmax_t)sblock.fs_size);
+ printf("New file system size is %jd frags\n", (intmax_t)sblock.fs_size);
/*
* Try to access our new last block in the file system. Even if we
OpenPOWER on IntegriCloud