diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-11-24 12:10:13 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-11-24 12:10:13 +0000 |
commit | 65bb10f253f24be26c50dfdb99398afe6f2834f2 (patch) | |
tree | b3b30139943d48f2cbab32629160065a737c65eb /util-linux | |
parent | fe2571579288d1492a98880e099d8a62797fdc37 (diff) | |
download | busybox-w32-65bb10f253f24be26c50dfdb99398afe6f2834f2.tar.gz busybox-w32-65bb10f253f24be26c50dfdb99398afe6f2834f2.tar.bz2 busybox-w32-65bb10f253f24be26c50dfdb99398afe6f2834f2.zip |
reduce bss
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 8580bec70..eb26abb59 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -117,8 +117,12 @@ static uint sector_size = DEFAULT_SECTOR_SIZE, | |||
117 | * Raw disk label. For DOS-type partition tables the MBR, | 117 | * Raw disk label. For DOS-type partition tables the MBR, |
118 | * with descriptions of the primary partitions. | 118 | * with descriptions of the primary partitions. |
119 | */ | 119 | */ |
120 | #if (MAX_SECTOR_SIZE) > (BUFSIZ+1) | ||
120 | static char MBRbuffer[MAX_SECTOR_SIZE]; | 121 | static char MBRbuffer[MAX_SECTOR_SIZE]; |
121 | 122 | #else | |
123 | # define MBRbuffer bb_common_bufsiz1 | ||
124 | #endif | ||
125 | |||
122 | #ifdef CONFIG_FEATURE_SUN_LABEL | 126 | #ifdef CONFIG_FEATURE_SUN_LABEL |
123 | static int sun_label; /* looking at sun disklabel */ | 127 | static int sun_label; /* looking at sun disklabel */ |
124 | #else | 128 | #else |