+2000-09-11 <tytso@valinux.com>
+
+ * mke2fs.c (zap_sector): Fix error message printed when zap_sector
+ fails.
+
+ * dumpe2fs.c (list_desc): Fixed format string bug when printing
+ the inode table location in non-hex format.
+
2000-08-20 <tytso@valinux.com>
* get_device_by_label.c: Add call to ext2fs_find_block_device if
"Inode table at %04x-%04x (+%d)\n"):
_(" Block bitmap at %u (+%d), "
"Inode bitmap at %u (+%d)\n "
- "Inode table at %u (+%d)\n"),
+ "Inode table at %u-%u (+%d)\n"),
fs->group_desc[i].bg_block_bitmap,
fs->group_desc[i].bg_block_bitmap - group_blk,
fs->group_desc[i].bg_inode_bitmap,
retval = io_channel_write_blk(fs->io, sect, -512, buf);
io_channel_set_blksize(fs->io, fs->blocksize);
if (retval)
- printf(_("Warning: could not erase block 0: %s\n"),
+ printf(_("Warning: could not erase sector %d: %s\n", sect),
error_message(retval));
}