aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/util.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-20 13:28:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-20 13:28:22 +0000
commite1a0d486e4804eae098571f1a6788394c2ee51ae (patch)
treec6f3435738900c8d53832eb919b1b2c3d524f2e5 /e2fsprogs/util.c
parentdd2982882bb192ea757f32514bc2ea0bc96f5ba0 (diff)
downloadbusybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.gz
busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.bz2
busybox-w32-e1a0d486e4804eae098571f1a6788394c2ee51ae.zip
message string changes, mostly for consistency, also -32 bytes in .rodata
Diffstat (limited to 'e2fsprogs/util.c')
-rw-r--r--e2fsprogs/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/e2fsprogs/util.c b/e2fsprogs/util.c
index e68c457e7..b30c294b8 100644
--- a/e2fsprogs/util.c
+++ b/e2fsprogs/util.c
@@ -82,7 +82,7 @@ void check_mount(const char *device, int force, const char *type)
82 82
83 retval = ext2fs_check_if_mounted(device, &mount_flags); 83 retval = ext2fs_check_if_mounted(device, &mount_flags);
84 if (retval) { 84 if (retval) {
85 bb_error_msg("Could not determine if %s is mounted", device); 85 bb_error_msg("cannot determine if %s is mounted", device);
86 return; 86 return;
87 } 87 }
88 if (mount_flags & EXT2_MF_MOUNTED) { 88 if (mount_flags & EXT2_MF_MOUNTED) {
@@ -219,7 +219,7 @@ void make_journal_device(char *journal_device, ext2_filsys fs, int quiet, int fo
219 EXT2_FLAG_JOURNAL_DEV_OK, 0, 219 EXT2_FLAG_JOURNAL_DEV_OK, 0,
220 fs->blocksize, io_ptr, &jfs); 220 fs->blocksize, io_ptr, &jfs);
221 if (retval) 221 if (retval)
222 bb_error_msg_and_die("Could not journal device %s", journal_device); 222 bb_error_msg_and_die("cannot journal device %s", journal_device);
223 if(!quiet) 223 if(!quiet)
224 printf("Adding journal to device %s: ", journal_device); 224 printf("Adding journal to device %s: ", journal_device);
225 fflush(stdout); 225 fflush(stdout);
@@ -248,7 +248,7 @@ void make_journal_blocks(ext2_filsys fs, int journal_size, int journal_flags, in
248 retval = ext2fs_add_journal_inode(fs, journal_blocks, 248 retval = ext2fs_add_journal_inode(fs, journal_blocks,
249 journal_flags); 249 journal_flags);
250 if(retval) 250 if(retval)
251 bb_error_msg_and_die("Could not create journal"); 251 bb_error_msg_and_die("cannot create journal");
252 if(!quiet) 252 if(!quiet)
253 puts("done"); 253 puts("done");
254} 254}