diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-25 20:18:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-25 20:18:46 +0000 |
commit | 893988182a97bc58d8d1d8eb15d00e427801cedd (patch) | |
tree | 67ac300dd2e47d4469a39c4bd191ea824b00cc80 | |
parent | ca9635b19dc66f37c322a61d8fcba5c753a526af (diff) | |
download | busybox-w32-893988182a97bc58d8d1d8eb15d00e427801cedd.tar.gz busybox-w32-893988182a97bc58d8d1d8eb15d00e427801cedd.tar.bz2 busybox-w32-893988182a97bc58d8d1d8eb15d00e427801cedd.zip |
fdisk: comment out unused function
-rw-r--r-- | util-linux/fdisk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 00b856684..cd053b876 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -702,6 +702,7 @@ get_partition_start(const struct pte *pe) | |||
702 | * We might also do the opposite and warn in all cases except | 702 | * We might also do the opposite and warn in all cases except |
703 | * for "is probably nondos partition". | 703 | * for "is probably nondos partition". |
704 | */ | 704 | */ |
705 | #ifdef UNUSED | ||
705 | static int | 706 | static int |
706 | is_dos_partition(int t) | 707 | is_dos_partition(int t) |
707 | { | 708 | { |
@@ -711,6 +712,7 @@ is_dos_partition(int t) | |||
711 | t == 0x1b || t == 0x1c || t == 0x1e || t == 0x24 || | 712 | t == 0x1b || t == 0x1c || t == 0x1e || t == 0x24 || |
712 | t == 0xc1 || t == 0xc4 || t == 0xc6); | 713 | t == 0xc1 || t == 0xc4 || t == 0xc6); |
713 | } | 714 | } |
715 | #endif | ||
714 | 716 | ||
715 | static void | 717 | static void |
716 | menu(void) | 718 | menu(void) |