diff options
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index e4f7e5455..84538af99 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -680,7 +680,7 @@ static void | |||
680 | read_pte(struct pte *pe, off_t offset) | 680 | read_pte(struct pte *pe, off_t offset) |
681 | { | 681 | { |
682 | pe->offset = offset; | 682 | pe->offset = offset; |
683 | pe->sectorbuffer = (char *) xmalloc(sector_size); | 683 | pe->sectorbuffer = xmalloc(sector_size); |
684 | seek_sector(offset); | 684 | seek_sector(offset); |
685 | if (read(fd, pe->sectorbuffer, sector_size) != sector_size) | 685 | if (read(fd, pe->sectorbuffer, sector_size) != sector_size) |
686 | fdisk_fatal(unable_to_read); | 686 | fdisk_fatal(unable_to_read); |