aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fdisk.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-29 05:16:45 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-29 05:16:45 +0000
commit270d5d75f128d3d8e3e515b457b1b1a4f40bb556 (patch)
treebf868dd03783601d633d362a40479fefd4e10ff0 /util-linux/fdisk.c
parent6eaf0a98831960e3a4593e6630404634d747ab82 (diff)
downloadbusybox-270d5d75f128d3d8e3e515b457b1b1a4f40bb556.tar.gz
fdisk: cosmetics, and removal of dead data
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r--util-linux/fdisk.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index 7f046edfb..a1d31501b 100644
--- a/util-linux/fdisk.c
+++ b/util-linux/fdisk.c
@@ -86,8 +86,6 @@ struct partition {
static const char unable_to_open[] ALIGN1 = "cannot open %s";
static const char unable_to_read[] ALIGN1 = "cannot read from %s";
static const char unable_to_seek[] ALIGN1 = "cannot seek on %s";
-static const char unable_to_write[] ALIGN1 = "cannot write to %s";
-static const char ioctl_error[] ALIGN1 = "BLKGETSIZE ioctl failed on %s";
static void fdisk_fatal(const char *why) ATTRIBUTE_NORETURN;
enum label_type {
@@ -320,7 +318,7 @@ struct globals {
struct pte ptes[MAXIMUM_PARTS];
};
#define G (*ptr_to_globals)
-#define line_ptr (G.line_ptr)
+#define line_ptr (G.line_ptr )
#define disk_device (G.disk_device )
#define g_partitions (G.g_partitions )
#define units_per_sector (G.units_per_sector )
@@ -346,11 +344,11 @@ struct globals {
#define kern_sectors (G.kern_sectors )
#define extended_offset (G.extended_offset )
#define total_number_of_sectors (G.total_number_of_sectors)
-#define listingbuf (G.listingbuf)
-#define line_buffer (G.line_buffer)
+#define listingbuf (G.listingbuf )
+#define line_buffer (G.line_buffer )
#define partname_buffer (G.partname_buffer)
-#define MBRbuffer (G.MBRbuffer)
-#define ptes (G.ptes)
+#define MBRbuffer (G.MBRbuffer )
+#define ptes (G.ptes )
#define INIT_G() do { \
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
sector_size = DEFAULT_SECTOR_SIZE; \
@@ -369,7 +367,7 @@ static ullong bb_BLKGETSIZE_sectors(int fd)
unsigned long longsectors;
if (ioctl(fd, BLKGETSIZE64, &v64) == 0) {
- /* got bytes, convert to 512 byte sectors */
+ /* Got bytes, convert to 512 byte sectors */
return (v64 >> 9);
}
/* Needs temp of type long */
@@ -414,7 +412,7 @@ close_dev_fd(void)
}
#if ENABLE_FEATURE_FDISK_WRITABLE
-/* read line; return 0 or first printable char */
+/* Read line; return 0 or first printable char */
static int
read_line(const char *prompt)
{
@@ -435,7 +433,7 @@ read_line(const char *prompt)
#endif
/*
- * return partition name - uses static storage
+ * Return partition name - uses static storage
*/
static const char *
partname(const char *dev, int pno, int lth)