diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-25 01:14:43 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-25 01:14:43 +0200 |
commit | 53e5c598217db8b6a4e3cddefa260dd5cf0863ea (patch) | |
tree | 82b929b38153d536da60dde5ca7e6938cf26a0ff | |
parent | a84bbc54257e68ef149cbaff8835c9cb3605c9ac (diff) | |
download | busybox-w32-53e5c598217db8b6a4e3cddefa260dd5cf0863ea.tar.gz busybox-w32-53e5c598217db8b6a4e3cddefa260dd5cf0863ea.tar.bz2 busybox-w32-53e5c598217db8b6a4e3cddefa260dd5cf0863ea.zip |
fdisk: commonalize strings
function old new delta
.rodata 103674 103667 -7
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 c50ceead1..1c2a7d683 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -232,8 +232,8 @@ struct pte { | |||
232 | }; | 232 | }; |
233 | 233 | ||
234 | #define unable_to_open "can't open '%s'" | 234 | #define unable_to_open "can't open '%s'" |
235 | #define unable_to_read "can't read from %s" | 235 | #define unable_to_read "can't read '%s'" |
236 | #define unable_to_seek "can't seek on %s" | 236 | #define unable_to_seek "can't seek '%s'" |
237 | 237 | ||
238 | enum label_type { | 238 | enum label_type { |
239 | LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF, LABEL_GPT | 239 | LABEL_DOS, LABEL_SUN, LABEL_SGI, LABEL_AIX, LABEL_OSF, LABEL_GPT |