diff options
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 8e133178d..7227a829e 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -107,9 +107,9 @@ struct partition { | |||
107 | unsigned char size4[4]; /* nr of sectors in partition */ | 107 | unsigned char size4[4]; /* nr of sectors in partition */ |
108 | } PACKED; | 108 | } PACKED; |
109 | 109 | ||
110 | static const char unable_to_open[] ALIGN1 = "can't open '%s'"; | 110 | #define unable_to_open "can't open '%s'" |
111 | static const char unable_to_read[] ALIGN1 = "can't read from %s"; | 111 | #define unable_to_read "can't read from %s" |
112 | static const char unable_to_seek[] ALIGN1 = "can't seek on %s"; | 112 | #define unable_to_seek "can't seek on %s" |
113 | 113 | ||
114 | enum label_type { | 114 | enum label_type { |
115 | LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF | 115 | LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF |