diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
commit | a60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch) | |
tree | f59bc665cfe3d2d32622450d80523e3c1265e501 /util-linux/fdisk.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.bz2 busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index a1d31501b..b44a2b425 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -81,12 +81,12 @@ struct partition { | |||
81 | unsigned char end_cyl; /* end cylinder */ | 81 | unsigned char end_cyl; /* end cylinder */ |
82 | unsigned char start4[4]; /* starting sector counting from 0 */ | 82 | unsigned char start4[4]; /* starting sector counting from 0 */ |
83 | unsigned char size4[4]; /* nr of sectors in partition */ | 83 | unsigned char size4[4]; /* nr of sectors in partition */ |
84 | } ATTRIBUTE_PACKED; | 84 | } PACKED; |
85 | 85 | ||
86 | static const char unable_to_open[] ALIGN1 = "cannot open %s"; | 86 | static const char unable_to_open[] ALIGN1 = "cannot open %s"; |
87 | static const char unable_to_read[] ALIGN1 = "cannot read from %s"; | 87 | static const char unable_to_read[] ALIGN1 = "cannot read from %s"; |
88 | static const char unable_to_seek[] ALIGN1 = "cannot seek on %s"; | 88 | static const char unable_to_seek[] ALIGN1 = "cannot seek on %s"; |
89 | static void fdisk_fatal(const char *why) ATTRIBUTE_NORETURN; | 89 | static void fdisk_fatal(const char *why) NORETURN; |
90 | 90 | ||
91 | enum label_type { | 91 | enum label_type { |
92 | LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF | 92 | LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF |