From 6331cf059ccfdf35f4e5a505cbae885094cc41b0 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 13 Nov 2009 09:08:27 +0100 Subject: *: use "can't" instead of "cannot" Signed-off-by: Denys Vlasenko --- util-linux/fsck_minix.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'util-linux/fsck_minix.c') diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index cc9eec22d..18ea05fec 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c @@ -565,7 +565,7 @@ static void write_superblock(void) xlseek(dev_fd, BLOCK_SIZE, SEEK_SET); if (BLOCK_SIZE != full_write(dev_fd, superblock_buffer, BLOCK_SIZE)) - die("cannot write superblock"); + die("can't write superblock"); } static void write_tables(void) @@ -573,11 +573,11 @@ static void write_tables(void) write_superblock(); if (IMAPS * BLOCK_SIZE != write(dev_fd, inode_map, IMAPS * BLOCK_SIZE)) - die("cannot write inode map"); + die("can't write inode map"); if (ZMAPS * BLOCK_SIZE != write(dev_fd, zone_map, ZMAPS * BLOCK_SIZE)) - die("cannot write zone map"); + die("can't write zone map"); if (INODE_BUFFER_SIZE != write(dev_fd, inode_buffer, INODE_BUFFER_SIZE)) - die("cannot write inodes"); + die("can't write inodes"); } static void get_dirsize(void) @@ -607,7 +607,7 @@ static void read_superblock(void) { xlseek(dev_fd, BLOCK_SIZE, SEEK_SET); if (BLOCK_SIZE != full_read(dev_fd, superblock_buffer, BLOCK_SIZE)) - die("cannot read superblock"); + die("can't read superblock"); /* already initialized to: namelen = 14; dirsize = 16; @@ -643,11 +643,11 @@ static void read_tables(void) inode_count = xmalloc(INODES + 1); zone_count = xmalloc(ZONES); if (IMAPS * BLOCK_SIZE != read(dev_fd, inode_map, IMAPS * BLOCK_SIZE)) - die("cannot read inode map"); + die("can't read inode map"); if (ZMAPS * BLOCK_SIZE != read(dev_fd, zone_map, ZMAPS * BLOCK_SIZE)) - die("cannot read zone map"); + die("can't read zone map"); if (INODE_BUFFER_SIZE != read(dev_fd, inode_buffer, INODE_BUFFER_SIZE)) - die("cannot read inodes"); + die("can't read inodes"); if (NORM_FIRSTZONE != FIRSTZONE) { printf("warning: firstzone!=norm_firstzone\n"); errors_uncorrected = 1; -- cgit v1.2.3