diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-16 17:22:33 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-16 17:22:33 +0000 |
commit | f77f369ce89549ae3b0b70bfbac4e9c242ec5298 (patch) | |
tree | b7b9979a4dc949a9bd7f8db90c48ba5491eb1844 /util-linux/fdisk_aix.c | |
parent | c794c51a1aa23d2edcff8e1ab4edf96194d3208c (diff) | |
download | busybox-w32-f77f369ce89549ae3b0b70bfbac4e9c242ec5298.tar.gz busybox-w32-f77f369ce89549ae3b0b70bfbac4e9c242ec5298.tar.bz2 busybox-w32-f77f369ce89549ae3b0b70bfbac4e9c242ec5298.zip |
fdisk: reduce global data/bss usage. 8k data+bss build is achievable soon ;)
(add/remove: 0/13 grow/shrink: 6/19 up/down: 74/-492) Total: -418 bytes
text data bss dec hex filename
778330 860 7408 786598 c00a6 busybox_old
777970 840 7376 786186 bff0a busybox_unstripped
Diffstat (limited to 'util-linux/fdisk_aix.c')
-rw-r--r-- | util-linux/fdisk_aix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fdisk_aix.c b/util-linux/fdisk_aix.c index 8095fc4ab..69aef97f5 100644 --- a/util-linux/fdisk_aix.c +++ b/util-linux/fdisk_aix.c | |||
@@ -63,7 +63,7 @@ check_aix_label(void) | |||
63 | aix_other_endian = (aixlabel->magic == AIX_LABEL_MAGIC_SWAPPED); | 63 | aix_other_endian = (aixlabel->magic == AIX_LABEL_MAGIC_SWAPPED); |
64 | update_units(); | 64 | update_units(); |
65 | current_label_type = label_aix; | 65 | current_label_type = label_aix; |
66 | partitions = 1016; | 66 | g_partitions = 1016; |
67 | aix_volumes = 15; | 67 | aix_volumes = 15; |
68 | aix_info(); | 68 | aix_info(); |
69 | /*aix_nolabel();*/ /* %% */ | 69 | /*aix_nolabel();*/ /* %% */ |