aboutsummaryrefslogtreecommitdiff
path: root/miscutils/makedevs.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2023-07-17 17:29:36 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2023-07-17 17:29:36 +0200
commitc484846c4459affa769b84cbd0b586f2bbaec828 (patch)
tree64be47b9451d3fd508a662b06db66ad3ddd03fb0 /miscutils/makedevs.c
parenta6a102ec4c8d96fcfb968c88fbdae80f6142c7bf (diff)
downloadbusybox-w32-c484846c4459affa769b84cbd0b586f2bbaec828.tar.gz
busybox-w32-c484846c4459affa769b84cbd0b586f2bbaec828.tar.bz2
busybox-w32-c484846c4459affa769b84cbd0b586f2bbaec828.zip
introduce and use exitcode_t
function old new delta strings_main 422 420 -2 setfattr_main 175 173 -2 brctl_main 1548 1546 -2 makedevs_main 979 975 -4 rev_main 337 332 -5 getfattr_main 307 302 -5 cut_main 1201 1196 -5 cksum_main 398 393 -5 umount_main 573 565 -8 ln_main 516 508 -8 expand_main 660 652 -8 df_main 1068 1060 -8 renice_main 346 332 -14 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/13 up/down: 0/-76) Total: -76 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/makedevs.c')
-rw-r--r--miscutils/makedevs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c
index 48be91875..999a3b976 100644
--- a/miscutils/makedevs.c
+++ b/miscutils/makedevs.c
@@ -181,7 +181,7 @@ int makedevs_main(int argc UNUSED_PARAM, char **argv)
181{ 181{
182 parser_t *parser; 182 parser_t *parser;
183 char *line = (char *)"-"; 183 char *line = (char *)"-";
184 int ret = EXIT_SUCCESS; 184 exitcode_t ret = EXIT_SUCCESS;
185 185
186 getopt32(argv, "^" "d:" "\0" "=1", &line); 186 getopt32(argv, "^" "d:" "\0" "=1", &line);
187 argv += optind; 187 argv += optind;