diff options
author | Denys Vlasenko | 2017-07-03 21:31:16 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-07-18 19:20:58 +0200 |
commit | 442d522f0bc6f29c14a3e54a0af3aac68bb891a1 (patch) | |
tree | aa36853bf59cf4b3d4808d391ab31a714c3fc28c /util-linux | |
parent | ceaffde51163394c47fec34dac8663ae8152a699 (diff) | |
download | busybox-442d522f0bc6f29c14a3e54a0af3aac68bb891a1.zip busybox-442d522f0bc6f29c14a3e54a0af3aac68bb891a1.tar.gz |
fixes for bugs found by make_single_applets.sh
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 916d4e3..4467525 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -185,6 +185,8 @@ struct hd_geometry { #define HDIO_GETGEO 0x0301 /* get device geometry */ +/* TODO: #if ENABLE_FEATURE_FDISK_WRITABLE */ +/* (currently fdisk_sun/sgi.c do not have proper WRITABLE #ifs) */ static const char msg_building_new_label[] ALIGN1 = "Building a new %s. Changes will remain in memory only,\n" "until you decide to write them. After that the previous content\n" @@ -192,6 +194,7 @@ static const char msg_building_new_label[] ALIGN1 = static const char msg_part_already_defined[] ALIGN1 = "Partition %u is already defined, delete it before re-adding\n"; +/* #endif */ struct partition { |